@font-face {
  font-family: Pretendard;
  src: url("../font/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("../font/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --primary: #4b6bff;
  --primary-dark: #324dcc;
  --ink: #151926;
  --muted: #687083;
  --line: #e7eaf1;
  --soft: #f5f7fb;
  --white: #fff;
  --navy: #111827;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(31, 41, 55, 0.1);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  line-height: 1.65;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}
.section {
  padding: 112px 0;
}
.section-sm {
  padding: 72px 0;
}
.soft-section {
  background: linear-gradient(180deg, #f8faff 0%, #f5f7fb 100%);
}
.dark-section {
  color: #fff;
  background: radial-gradient(
      circle at 10% 0,
      rgba(75, 107, 255, 0.3),
      transparent 38%
    ),
    #111725;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}
.display {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.065em;
}
.section-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}
.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}
.center {
  text-align: center;
}
.center .lead {
  margin-left: auto;
  margin-right: auto;
}
.text-primary {
  color: var(--primary);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(75, 107, 255, 0.18);
  border-radius: 99px;
  color: var(--primary-dark);
  background: #f4f6ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 5px;
}
.chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(228, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: white;
  background: linear-gradient(145deg, #6c86ff, #3d5dec);
  box-shadow: 0 9px 22px rgba(75, 107, 255, 0.28);
}
.brand small {
  display: block;
  margin-top: -3px;
  color: #8a91a1;
  font-size: 9px;
  letter-spacing: 0.17em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: #555e70;
  font-size: 14px;
  font-weight: 700;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--primary);
  background: #f3f5ff;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(75, 107, 255, 0.24);
}
.btn-primary:hover {
  background: var(--primary-dark);
}
.btn-ghost {
  border-color: var(--line);
  background: #fff;
}
.btn-white {
  color: var(--ink);
  background: #fff;
}
.btn-lg {
  min-height: 56px;
  padding: 0 28px;
}
.mobile-cta {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 110px;
  background: linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
}
.hero:before,
.hero:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.hero:before {
  width: 520px;
  height: 520px;
  right: -220px;
  top: -250px;
  background: rgba(75, 107, 255, 0.11);
}
.hero:after {
  width: 300px;
  height: 300px;
  left: -190px;
  bottom: -160px;
  background: rgba(132, 157, 255, 0.1);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 70px;
}
.hero-copy .lead {
  max-width: 630px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  color: #737b8c;
  font-size: 14px;
}
.trust-line span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-line span:before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}
.glass-stage {
  position: relative;
  min-height: 520px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 38px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.75),
    rgba(238, 242, 255, 0.62)
  );
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.glass-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  right: -50px;
  top: -40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8da2ff, #4b6bff);
  filter: blur(3px);
  opacity: 0.24;
}
.dashboard-mock {
  position: relative;
  overflow: hidden;
  height: 460px;
  border: 1px solid rgba(220, 225, 238, 0.9);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(43, 52, 79, 0.14);
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 44px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  background: #fafbfe;
}
.mock-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9deea;
}
.mock-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  height: calc(100% - 44px);
}
.mock-side {
  padding: 20px 12px;
  background: #171e30;
}
.mock-side span {
  display: block;
  height: 8px;
  margin: 0 0 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.17);
}
.mock-side span:first-child {
  width: 72%;
  background: #6c86ff;
}
.mock-content {
  padding: 24px;
}
.mock-title {
  width: 42%;
  height: 16px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #222b42;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-stat {
  height: 70px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f8f9fd;
}
.mock-chart {
  height: 145px;
  margin-top: 15px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(75, 107, 255, 0.12),
    rgba(75, 107, 255, 0.02)
  );
  position: relative;
  overflow: hidden;
}
.mock-chart:after {
  position: absolute;
  content: "";
  left: 8%;
  right: 8%;
  bottom: 28%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #4b6bff 0 20%,
    #8ea2ff 20% 42%,
    #4b6bff 42% 65%,
    #9aadff 65%
  );
  transform: skewY(-9deg);
}
.mock-list {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}
.mock-list i {
  height: 11px;
  border-radius: 8px;
  background: #edf0f6;
}
.mock-list i:nth-child(2) {
  width: 88%;
}
.mock-list i:nth-child(3) {
  width: 68%;
}
.floating-note {
  position: absolute;
  right: -28px;
  bottom: 58px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(41, 51, 80, 0.14);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 700;
}
.floating-note strong {
  display: block;
  color: var(--primary);
  font-size: 24px;
}
.performance-strip {
  position: relative;
  z-index: 3;
  margin-top: -50px;
}
.performance-shell {
  overflow: hidden;
  border: 1px solid rgba(221, 226, 238, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(30, 39, 65, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.performance-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 28px 20px;
  border-bottom: 1px solid var(--line);
}
.performance-kicker {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.performance-head h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.performance-date {
  margin: 0;
  color: #8890a0;
  font-size: 12px;
}
.performance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.performance-card {
  position: relative;
  min-width: 0;
  padding: 26px 28px 25px;
  border-right: 1px solid var(--line);
}
.performance-card:last-child {
  border-right: 0;
}
.performance-card:before {
  position: absolute;
  content: "";
  left: 28px;
  top: 0;
  width: 38px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--metric-color, var(--primary));
}
.performance-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #6f7788;
  font-size: 13px;
  font-weight: 700;
}
.performance-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--metric-color, var(--primary));
  box-shadow: 0 0 0 5px
    color-mix(in srgb, var(--metric-color, var(--primary)) 12%, transparent);
}
.performance-value {
  display: flex;
  align-items: baseline;
  min-height: 51px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.performance-number {
  font-size: clamp(34px, 3.5vw, 47px);
  font-weight: 800;
  letter-spacing: -0.055em;
}
.performance-suffix {
  margin-left: 4px;
  color: var(--metric-color, var(--primary));
  font-size: 17px;
  font-weight: 800;
}
.performance-description {
  margin: 9px 0 0;
  color: #697184;
  font-size: 13px;
  line-height: 1.5;
}
.performance-note {
  display: inline-block;
  margin-top: 9px;
  padding: 4px 8px;
  border-radius: 99px;
  color: var(--metric-color, var(--primary));
  background: color-mix(in srgb, var(--metric-color, var(--primary)) 8%, #fff);
  font-size: 10px;
  font-weight: 700;
}
.performance-source {
  margin: 0;
  padding: 12px 28px;
  border-top: 1px solid var(--line);
  color: #9299a8;
  background: rgba(247, 248, 252, 0.78);
  font-size: 11px;
  text-align: right;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 34px rgba(30, 41, 68, 0.05);
}
.card-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 13px;
  color: var(--primary);
  background: #eef1ff;
  font-weight: 800;
}
.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.card .link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--primary);
  font-weight: 700;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}
.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.feature-item {
  display: flex;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.7);
}
.feature-item b {
  display: grid;
  flex: 0 0 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: #edf0ff;
}
.feature-item strong {
  display: block;
  margin-bottom: 3px;
}
.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.media-frame {
  position: relative;
  display: grid;
  aspect-ratio: 4/3;
  width: 100%;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dfe4ef;
  border-radius: 28px;
  background: linear-gradient(145deg, #f8faff, #eef2fa);
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: auto auto;
}
.media-frame img[src=""],
.media-frame img.is-error {
  display: none;
}
.media-placeholder {
  text-align: center;
  color: #788195;
}
.media-placeholder span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid #dae0ec;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 24px;
}
.media-placeholder strong {
  display: block;
  color: #384054;
}
.media-placeholder small {
  display: block;
  margin-top: 6px;
}
.media-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 700;
}
.media-frame img[src=""] ~ .media-caption,
.media-frame img.is-error ~ .media-caption {
  display: none;
}

/* 메인 대시보드: 왼쪽 설명 높이에 맞추고 원본 화면은 자르지 않습니다. */
.media-frame--dashboard {
  align-self: stretch;
  min-height: 0;
}

.media-frame--dashboard img {
  inset: clamp(16px, 2vw, 26px);
  width: calc(100% - clamp(32px, 4vw, 52px));
  height: auto;
  /*height: calc(100% - clamp(32px, 4vw, 52px));*/
  object-fit: contain;
  object-position: center center;
  border-radius: 18px;
  /*box-shadow: 0 14px 36px rgba(35, 45, 76, 0.1);*/
  margin: auto auto;
}
.pathway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.path-step {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}
.path-step em {
  display: block;
  margin-bottom: 30px;
  color: #89a0ff;
  font-style: normal;
  font-weight: 800;
}
.path-step h3 {
  margin: 0 0 9px;
  font-size: 19px;
}
.path-step p {
  margin: 0;
  color: #aeb7c9;
  font-size: 14px;
}
.guide-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  margin-top: 50px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}
.guide-options {
  display: grid;
  gap: 10px;
  padding: 14px;
}
.guide-option {
  width: 100%;
  padding: 19px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #50596a;
  background: #fff;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}
.guide-option:hover,
.guide-option.is-active {
  border-color: #9badff;
  color: var(--primary);
  background: #f4f6ff;
}
.guide-result {
  padding: 35px;
  border-radius: 23px;
  color: #fff;
  background: linear-gradient(150deg, #171e30, #222c47);
}
.guide-result small {
  color: #8fa3ff;
  font-weight: 700;
}
.guide-result h3 {
  margin: 12px 0;
  font-size: 28px;
}
.guide-result p {
  color: #c4cad6;
}
.guide-result ul {
  padding: 0;
  list-style: none;
}
.guide-result li {
  margin: 8px 0;
}
.guide-result li:before {
  content: "✓";
  margin-right: 8px;
  color: #91a5ff;
  font-weight: 800;
}
.page-hero {
  padding: 88px 0 68px;
  background: radial-gradient(
      circle at 80% 0,
      rgba(75, 107, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #fff, #f8f9fd);
}
.breadcrumbs {
  margin-bottom: 24px;
  color: #7c8494;
  font-size: 13px;
}
.breadcrumbs a:hover {
  color: var(--primary);
}
.page-hero .lead {
  max-width: 670px;
}
.screen-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 66px;
  margin-top: 80px;
}
.screen-row:nth-child(even) {
  grid-template-columns: 1.15fr 0.85fr;
}
.screen-row:nth-child(even) .screen-copy {
  order: 2;
}
.screen-copy h2 {
  margin: 0 0 15px;
  font-size: 34px;
  line-height: 1.25;
}
.screen-copy p {
  color: var(--muted);
}
.bullet-list {
  padding: 0;
  list-style: none;
}
.bullet-list li {
  position: relative;
  padding: 8px 0 8px 27px;
}
.bullet-list li:before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
.price-card.recommended {
  border-color: #8fa3ff;
  box-shadow: 0 20px 48px rgba(75, 107, 255, 0.13);
}
.price-card .badge {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 99px;
  color: #fff;
  background: var(--primary);
  font-size: 11px;
  font-weight: 700;
}
.price-card h3 {
  margin: 20px 0 4px;
}
.price {
  margin: 7px 0 18px;
  font-size: 32px;
  font-weight: 800;
}
.price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.price-card ul {
  flex: 1;
  padding: 0;
  list-style: none;
  color: #525b6d;
  font-size: 14px;
}
.price-card li {
  margin: 11px 0;
}
.price-card li:before {
  content: "✓";
  margin-right: 7px;
  color: var(--primary);
  font-weight: 800;
}
.estimate-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  margin-top: 46px;
}
.form-card,
.result-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}
.result-card {
  position: sticky;
  top: 98px;
  align-self: start;
  color: #fff;
  background: linear-gradient(155deg, #171e30, #263252);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}
.field input,
.field select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #dfe3ec;
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}
.field input:focus,
.field select:focus {
  border-color: #8da2ff;
  box-shadow: 0 0 0 4px rgba(75, 107, 255, 0.09);
}
.field.full {
  grid-column: 1/-1;
}
.field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.field-label .bi {
  margin-right: 5px;
  color: var(--primary);
}

/* 추가 옵션 버튼 */
.option-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.option-button {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.option-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.option-button__content {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #4f586b;
  background: #fff;
  transition:
          border-color 0.18s ease,
          color 0.18s ease,
          background 0.18s ease,
          box-shadow 0.18s ease,
          transform 0.18s ease;
}

.option-button:hover .option-button__content {
  border-color: #cbd4ff;
  background: #fafbff;
  transform: translateY(-1px);
}

.option-button__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: #f0f3ff;
  font-size: 16px;
}

.option-button__text {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  line-height: 1.35;
}

.option-button__text strong {
  color: var(--ink);
  font-size: 13px;
}

.option-button__text small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.option-button__check {
  flex: 0 0 auto;
  color: #cfd4df;
  font-size: 16px;
  transition: color 0.18s ease;
}

.option-button input:checked + .option-button__content {
  border-color: var(--primary);
  color: var(--primary);
  background: #f4f6ff;
  box-shadow: 0 0 0 3px rgba(75, 107, 255, 0.08);
}

.option-button input:checked + .option-button__content .option-button__icon {
  color: #fff;
  background: var(--primary);
}

.option-button input:checked + .option-button__content .option-button__check {
  color: var(--primary);
}

.option-button input:focus-visible + .option-button__content {
  outline: 3px solid rgba(75, 107, 255, 0.2);
  outline-offset: 2px;
}

/* 견적 안내 영역 */
.estimate-messages {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.estimate-error,
.estimate-notice {
  align-items: flex-start;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 12px;
  line-height: 1.55;
}

.estimate-error {
  display: none;
  border: 1px solid #ffd9df;
  color: #a63245;
  background: #fff5f6;
}

.estimate-error.is-show {
  display: flex;
}

.estimate-error .bi {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #dc5065;
}

.estimate-notice {
  display: flex;
  border: 1px solid #dfe4ff;
  color: #58627a;
  background: #f6f7ff;
}

.estimate-notice > .bi {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--primary);
}

.estimate-notice p {
  margin: 0;
}

.estimate-notice strong {
  color: #3d4864;
  font-weight: 700;
}

@media (max-width: 680px) {
  .option-buttons {
    grid-template-columns: 1fr;
  }

  .option-button__content {
    min-height: 58px;
  }

  .estimate-error,
  .estimate-notice {
    padding: 9px 10px;
  }
}
.estimate-error {
  display: none;
  margin: 16px 0 0;
  padding: 12px;
  border-radius: 12px;
  color: #b33f4f;
  background: #fff1f3;
  font-size: 13px;
}
.estimate-error.is-show {
  display: block;
}
.result-card .label {
  color: #9eabc2;
  font-size: 13px;
}
.result-total {
  margin: 8px 0 22px;
  font-size: 38px;
  font-weight: 800;
}
.result-lines {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.result-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.result-line span {
  color: #abb5c7;
  font-size: 14px;
}
.result-detail {
  margin-top: 18px;
  color: #bac3d3;
  font-size: 13px;
}
.result-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.result-badges span {
  padding: 6px 9px;
  border-radius: 99px;
  color: #dce3ff;
  background: rgba(102, 130, 255, 0.17);
  font-size: 11px;
}
.consult-note {
  display: none;
  margin-top: 17px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
}
.consult-note.is-show {
  display: block;
}
.table-wrap {
  overflow: auto;
  margin-top: 35px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: #fff;
}
.compare-table th,
.compare-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}
.compare-table thead {
  background: #f7f8fc;
}
.compare-table .yes {
  color: var(--primary);
  font-weight: 800;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.security-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.security-card b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 13px;
  color: var(--primary);
  background: #eef1ff;
}
.security-card h3 {
  margin: 0 0 9px;
}
.security-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.notice {
  padding: 20px 22px;
  border: 1px solid #dfe4ff;
  border-radius: 18px;
  color: #47506a;
  background: #f4f6ff;
}
.faq {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.faq summary {
  padding: 20px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: "+";
  float: right;
  color: var(--primary);
}
.faq details[open] summary:after {
  content: "−";
}
.faq p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 45px;
  border-radius: 30px;
  color: #fff;
  background: radial-gradient(
      circle at 90% 0,
      rgba(94, 123, 255, 0.45),
      transparent 35%
    ),
    #151c2d;
}
.cta-panel h2 {
  margin: 0 0 9px;
  font-size: 32px;
}
.cta-panel p {
  margin: 0;
  color: #bac2d2;
}
.cta-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}
.site-footer {
  padding: 54px 0 90px;
  border-top: 1px solid var(--line);
  background: #f8f9fb;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
}
.footer-brand {
  margin-bottom: 16px;
}
.company {
  color: #727a8b;
  font-size: 13px;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  color: #697184;
  font-size: 13px;
}
.copyright {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #979dab;
  font-size: 12px;
}
.reference-hero {
  overflow: hidden;
}
.reference-hero-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: end;
  gap: 70px;
}
.reference-summary {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(39, 50, 79, 0.1);
  backdrop-filter: blur(18px);
}
.reference-summary:after {
  position: absolute;
  content: "";
  width: 130px;
  height: 130px;
  right: -55px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(75, 107, 255, 0.13);
}
.reference-summary span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.reference-summary strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.07em;
}
.reference-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.reference-logo-section {
  background: #fff;
}
.reference-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}
.reference-section-head .eyebrow {
  margin-bottom: 10px;
}
.reference-section-head .section-title {
  font-size: clamp(27px, 3.2vw, 40px);
}
.reference-section-head > p {
  margin: 0;
  color: #9299a8;
  font-size: 12px;
}
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.logo-item {
  display: grid;
  min-width: 0;
  height: 120px;
  place-items: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #858d9c;
  background: linear-gradient(145deg, #fff, #fafbfe);
  font-size: 12px;
  text-align: center;
}
.logo-item:nth-child(5n) {
  border-right: 0;
}
.logo-item:nth-last-child(-n + 5) {
  border-bottom: 0;
}
.logo-item img {
  display: none;
  width: 100%;
  height: 62px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition:
    filter 0.25s,
    opacity 0.25s,
    transform 0.25s;
}
.logo-item.has-image img {
  display: block;
}
.logo-item.has-image .logo-fallback {
  display: none;
}
.logo-item:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}
.logo-fallback {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.reference-archive-head {
  align-items: flex-end;
}
.reference-archive-head .lead {
  margin-top: 12px;
  font-size: 15px;
}
.reference-filters {
  display: flex;
  max-width: 560px;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}
.reference-filter {
  padding: 9px 14px;
  border: 1px solid #dfe3eb;
  border-radius: 99px;
  color: #697184;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.reference-filter:hover,
.reference-filter.is-active {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}
.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.reference-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 13px 38px rgba(35, 45, 73, 0.055);
}
.reference-card.is-featured:first-child {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
}
.reference-card.is-featured:first-child .reference-image {
  min-height: 440px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}
.reference-image {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  background: linear-gradient(145deg, #edf1f8, #f8faff);
  cursor: pointer;
}
.reference-image:before {
  position: absolute;
  z-index: 0;
  content: "";
  inset: 0;
  background-image: linear-gradient(
      rgba(75, 107, 255, 0.055) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(75, 107, 255, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
}
.reference-image img {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.reference-image.has-image img {
  display: block;
}
.reference-image:hover img {
  transform: scale(1.018);
}
.reference-image-placeholder {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.reference-image-placeholder b {
  font-size: 42px;
  line-height: 1;
  color: #c2cad8;
}
.reference-image-placeholder em {
  margin-top: 12px;
  color: #626c7f;
  font-style: normal;
  font-weight: 700;
}
.reference-image-placeholder small {
  margin-top: 4px;
  color: #9ba2b0;
}
.reference-image.has-image .reference-image-placeholder {
  display: none;
}
.reference-image-action {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  color: #fff;
  background: rgba(17, 24, 39, 0.64);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.reference-image.has-image:hover .reference-image-action {
  opacity: 1;
  transform: none;
}
.reference-card-body {
  padding: 27px;
}
.reference-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.reference-meta span {
  padding: 5px 9px;
  border-radius: 99px;
  color: var(--primary);
  background: #f0f3ff;
  font-size: 10px;
  font-weight: 800;
}
.reference-meta time {
  color: #a0a6b2;
  font-size: 11px;
}
.reference-card h3 {
  margin: 0;
  font-size: 23px;
}
.reference-client {
  margin: 4px 0 14px;
  color: #7b8393;
  font-size: 12px;
  font-weight: 700;
}
.reference-description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.reference-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #667083;
  background: #fafbfc;
  font-size: 10px;
}
.reference-empty {
  padding: 50px;
  border: 1px dashed #ccd2df;
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}
.reference-dialog {
  width: min(94vw, 1100px);
  max-height: 90vh;
  padding: 0;
  border: 0;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(13, 20, 38, 0.32);
}
.reference-dialog::backdrop {
  background: rgba(11, 17, 30, 0.72);
  backdrop-filter: blur(7px);
}
.reference-dialog-close {
  position: sticky;
  z-index: 5;
  float: right;
  top: 14px;
  margin: 14px 14px -58px 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 24, 39, 0.72);
  font-size: 25px;
  cursor: pointer;
}
.reference-dialog-media {
  min-height: 420px;
  background: #edf1f7;
}
.reference-dialog-media img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
}
.reference-dialog-copy {
  padding: 23px 28px 28px;
}
.reference-dialog-copy span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}
.reference-dialog-copy h2 {
  margin: 5px 0;
  font-size: 25px;
}
.reference-dialog-copy p {
  margin: 0;
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn {
    transition: none;
  }
}
@media (max-width: 1024px) {
  .nav-links {
    gap: 0;
  }
  .nav-link {
    padding: 9px 7px;
    font-size: 13px;
  }
  .hero-grid,
  .split,
  .screen-row,
  .screen-row:nth-child(even) {
    gap: 38px;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pathway {
    grid-template-columns: 1fr 1fr;
  }
  .logo-cloud {
    grid-template-columns: repeat(4, 1fr);
  }
  .logo-item:nth-child(5n) {
    border-right: 1px solid var(--line);
  }
  .logo-item:nth-child(4n) {
    border-right: 0;
  }
  .logo-item:nth-last-child(-n + 5) {
    border-bottom: 1px solid var(--line);
  }
  .logo-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}
@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }
  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-links.is-open {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    top: 78px;
    left: 0;
    right: 0;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 20px 40px rgba(20, 28, 47, 0.1);
  }
  .nav-link {
    padding: 14px;
  }
  .mobile-cta {
    display: flex;
    margin-top: 8px;
  }
  .hero {
    padding-top: 64px;
  }
  .hero-grid,
  .split,
  .guide-panel,
  .estimate-layout,
  .screen-row,
  .screen-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .media-frame--dashboard {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .trust-line {
    justify-content: center;
  }
  .glass-stage {
    min-height: 400px;
  }
  .dashboard-mock {
    height: 350px;
  }
  .screen-row:nth-child(even) .screen-copy {
    order: 0;
  }
  .card-grid,
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
  .performance-grid {
    grid-template-columns: 1fr 1fr;
  }
  .performance-card:nth-child(2) {
    border-right: 0;
  }
  .performance-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .guide-result {
    min-height: 330px;
  }
  .result-card {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
  .reference-hero-grid {
    grid-template-columns: 1fr;
  }
  .reference-summary {
    max-width: 360px;
  }
  .reference-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .reference-filters {
    justify-content: flex-start;
  }
  .reference-card.is-featured:first-child {
    display: block;
    grid-column: auto;
  }
  .reference-card.is-featured:first-child .reference-image {
    min-height: 320px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .reference-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
  .section {
    padding: 68px 0;
  }
  .section-sm {
    padding: 52px 0;
  }
  .nav-wrap {
    height: 68px;
  }
  .nav-links.is-open {
    top: 68px;
  }
  .display {
    font-size: 40px;
  }
  .section-title {
    font-size: 31px;
  }
  .lead {
    font-size: 16px;
  }
  .hero {
    padding: 48px 0 96px;
  }
  .glass-stage {
    min-height: 330px;
    padding: 16px;
    border-radius: 26px;
  }
  .dashboard-mock {
    height: 300px;
  }
  .mock-body {
    grid-template-columns: 74px 1fr;
  }
  .mock-content {
    padding: 16px;
  }
  .floating-note {
    right: 8px;
    bottom: 25px;
  }
  .performance-strip {
    margin-top: -56px;
  }
  .performance-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 20px 17px;
  }
  .performance-grid,
  .card-grid,
  .security-grid,
  .pricing-grid,
  .pathway {
    grid-template-columns: 1fr;
  }
  .performance-card {
    padding: 23px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }
  .performance-card:last-child {
    border-bottom: 0 !important;
  }
  .performance-card:before {
    left: 22px;
  }
  .performance-number {
    font-size: 42px;
  }
  .performance-source {
    padding: 11px 20px;
    text-align: left;
  }
  .card,
  .form-card,
  .result-card {
    padding: 23px;
  }
  .form-grid,
  .checks {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .media-frame {
    min-height: 310px;
  }
  .screen-row {
    margin-top: 55px;
  }
  .cta-panel {
    padding: 28px;
  }
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .page-hero {
    padding: 58px 0 48px;
  }
  .footer-links {
    gap: 12px;
  }
  .reference-summary {
    max-width: none;
  }
  .logo-cloud {
    grid-template-columns: 1fr 1fr;
  }
  .logo-item {
    height: 100px;
  }
  .logo-item:nth-child(4n) {
    border-right: 1px solid var(--line);
  }
  .logo-item:nth-child(2n) {
    border-right: 0;
  }
  .logo-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .reference-grid {
    grid-template-columns: 1fr;
  }
  .reference-image,
  .reference-card.is-featured:first-child .reference-image {
    min-height: 270px;
  }
  .reference-card-body {
    padding: 22px;
  }
  .reference-dialog-copy {
    padding: 20px;
  }
  .reference-dialog-media {
    min-height: 240px;
  }
}

/* Subpage hero visual system */
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 105px);
}

.page-hero-copy {
  min-width: 0;
}

.page-hero-copy .lead {
  max-width: 690px;
}

.page-hero-visual {
  --hero-accent: #4b6bff;
  --hero-accent-soft: rgba(75, 107, 255, 0.12);
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background: radial-gradient(
      circle at 82% 15%,
      var(--hero-accent-soft),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(243, 246, 255, 0.74)
    );
  box-shadow: 0 26px 70px rgba(35, 45, 76, 0.12);
  isolation: isolate;
}

.page-hero-visual::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 18px;
  border: 1px solid rgba(75, 107, 255, 0.08);
  border-radius: 25px;
  background-image: linear-gradient(
      rgba(75, 107, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(75, 107, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-hero-visual--guide {
  --hero-accent: #6759e8;
  --hero-accent-soft: rgba(103, 89, 232, 0.13);
}

.page-hero-visual--pricing {
  --hero-accent: #168f83;
  --hero-accent-soft: rgba(22, 143, 131, 0.13);
}

.page-hero-visual--security {
  --hero-accent: #315db9;
  --hero-accent-soft: rgba(49, 93, 185, 0.13);
}

.page-hero-visual--reference {
  --hero-accent: #4b6bff;
  --hero-accent-soft: rgba(75, 107, 255, 0.14);
}

.page-hero-visual--reference .hero-visual-node strong {
  color: var(--hero-accent);
  font-size: 15px;
  font-weight: 800;
}

.reference-more-note {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(75, 107, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(35, 45, 76, 0.05);
}

.reference-more-note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: rgba(75, 107, 255, 0.1);
  font-size: 19px;
}

.reference-more-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
}

.reference-more-note p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

@media (max-width: 560px) {
  .reference-more-note {
    align-items: flex-start;
    margin-top: 26px;
    padding: 16px;
  }
}

.hero-visual-orbit {
  position: absolute;
  width: 216px;
  height: 216px;
  left: 50%;
  top: 48%;
  border: 1px dashed color-mix(in srgb, var(--hero-accent) 24%, transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-visual-orbit::before,
.hero-visual-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid color-mix(in srgb, var(--hero-accent) 10%, transparent);
  border-radius: 50%;
}

.hero-visual-orbit::before {
  inset: 28px;
}

.hero-visual-orbit::after {
  inset: 58px;
  background: color-mix(in srgb, var(--hero-accent) 4%, #fff);
}

.hero-visual-main {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 48%;
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--hero-accent) 78%, #fff),
    var(--hero-accent)
  );
  box-shadow: 0 20px 38px
    color-mix(in srgb, var(--hero-accent) 25%, transparent);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.hero-visual-main .bi {
  font-size: 44px;
  transform: rotate(4deg);
}

.hero-visual-node {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 86px;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid rgba(222, 227, 240, 0.94);
  border-radius: 13px;
  color: #60697a;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(37, 47, 76, 0.1);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 700;
}

.hero-visual-node .bi {
  color: var(--hero-accent);
  font-size: 15px;
}

.hero-visual-node--one {
  left: 24px;
  top: 52px;
}

.hero-visual-node--two {
  right: 23px;
  top: 94px;
}

.hero-visual-node--three {
  left: 42px;
  bottom: 54px;
}

.hero-visual-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hero-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 36px;
  }

  .page-hero-visual {
    min-height: 290px;
  }

  .hero-visual-main {
    width: 92px;
    height: 92px;
    border-radius: 27px;
  }

  .hero-visual-main .bi {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .page-hero-visual {
    width: 100%;
    min-height: 230px;
  }

  .hero-visual-orbit {
    width: 176px;
    height: 176px;
  }

  .hero-visual-node--one {
    left: 9%;
    top: 34px;
  }

  .hero-visual-node--two {
    right: 8%;
    top: 74px;
  }

  .hero-visual-node--three {
    left: 15%;
    bottom: 26px;
  }
}

@media (max-width: 420px) {
  .page-hero-visual {
    min-height: 210px;
    border-radius: 26px;
  }

  .hero-visual-main {
    width: 78px;
    height: 78px;
    border-radius: 23px;
  }

  .hero-visual-main .bi {
    font-size: 32px;
  }

  .hero-visual-node {
    min-width: 0;
    padding: 8px 10px;
    font-size: 11px;
  }

  .hero-visual-label {
    right: 16px;
    bottom: 14px;
  }
}

/* Reference logo belt */
.logo-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(35, 45, 73, 0.045);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 5%,
    #000 95%,
    transparent
  );
}
.logo-track {
  display: flex;
  width: max-content;
  animation: logo-belt 34s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track {
  animation-play-state: paused;
}
.logo-set {
  display: flex;
  flex: none;
}
.logo-set .logo-item {
  display: grid;
  flex: 0 0 210px;
  width: 210px;
  height: 116px;
  place-items: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  color: #858d9c;
  background: linear-gradient(145deg, #fff, #fafbfe);
  font-size: 12px;
  text-align: center;
}
.logo-set .logo-item img {
  height: 62px;
}
@keyframes logo-belt {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Reference icon details */
.reference-hero .breadcrumbs i {
  margin-right: 4px;
  color: var(--primary);
}
.reference-section-head .eyebrow i,
.reference-hero .eyebrow i {
  font-size: 14px;
}
.reference-summary span i {
  margin-right: 5px;
}
.reference-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.reference-filter i {
  font-size: 12px;
}
.reference-meta span,
.reference-meta time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.reference-meta span i {
  font-size: 11px;
}
.reference-meta time i {
  color: #8992a4;
}
.reference-image-placeholder > i {
  margin-bottom: 7px;
  color: #aab4c5;
  font-size: 27px;
}
.reference-image-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.reference-tags span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.reference-tags i {
  color: var(--primary);
  font-size: 12px;
}
.reference-dialog-close {
  display: grid;
  place-items: center;
  font-size: 16px;
}
.cta-panel h2 i {
  margin-right: 5px;
  color: #8fa3ff;
  font-size: 0.88em;
}

/* Item 1 is full width; item 2 onward remains a two-column grid. */
@media (min-width: 561px) {
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .reference-card[data-reference-id="1"].is-featured {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: 1.25fr 0.75fr;
  }
  .reference-card[data-reference-id="1"].is-featured .reference-image {
    min-height: 440px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
}
@media (max-width: 560px) {
  .logo-set .logo-item {
    flex-basis: 160px;
    width: 160px;
    height: 96px;
    padding: 15px;
  }
  .logo-set .logo-item img {
    height: 50px;
  }
  .logo-track {
    animation-duration: 27s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .logo-track {
    animation: none;
  }
  .logo-set[aria-hidden="true"] {
    display: none;
  }
}

/* Bootstrap Icons · shared visual language */
.bi {
  flex: 0 0 auto;
  line-height: 1;
  vertical-align: -0.08em;
}
.section {
  padding: 96px 0;
}
.section-sm {
  padding: 62px 0;
}
.eyebrow:has(.bi)::before {
  display: none;
}
.eyebrow .bi {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(75, 107, 255, 0.15);
  border-radius: 9px;
  background: rgba(75, 107, 255, 0.07);
  font-size: 14px;
}
.dark-section .eyebrow .bi {
  border-color: rgba(143, 163, 255, 0.24);
  background: rgba(143, 163, 255, 0.1);
}
.chip .bi {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-size: 14px;
}
.brand-mark .bi {
  font-size: 17px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link .bi {
  color: #9299aa;
  font-size: 13px;
  transition: color 0.2s;
}
.nav-link:hover .bi,
.nav-link.is-active .bi {
  color: var(--primary);
}
.menu-btn {
  place-items: center;
  color: var(--ink);
  font-size: 23px;
}
.menu-btn .bi {
  display: block;
}
.performance-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
}
.performance-kicker .bi {
  font-size: 13px;
}
.performance-label .bi {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  color: var(--metric-color, var(--primary));
  background: color-mix(in srgb, var(--metric-color, var(--primary)) 10%, #fff);
  box-shadow: none;
  font-size: 13px;
}
.card-grid {
  margin-top: 40px;
}
.card-number,
.security-card b {
  font-size: 19px;
}
.card .link {
  align-items: center;
  gap: 6px;
}
.card .link .bi {
  transition: transform 0.2s;
}
.card .link:hover .bi {
  transform: translateX(3px);
}
.feature-item b {
  font-size: 15px;
}
.media-placeholder span .bi {
  color: var(--primary);
  font-size: 25px;
}
.path-step em {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.path-step em .bi {
  font-size: 21px;
}
.path-step em small {
  color: inherit;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.guide-option {
  display: flex;
  align-items: center;
  gap: 11px;
}
.guide-option .bi {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #81899a;
  background: #f4f5f8;
  font-size: 14px;
}
.guide-option:hover .bi,
.guide-option.is-active .bi {
  color: var(--primary);
  background: #e9edff;
}
.guide-result h3 .bi {
  margin-right: 5px;
  color: #91a5ff;
  font-size: 0.8em;
}
.screen-row {
  margin-top: 66px;
}
.price-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card h3 .bi {
  color: var(--primary);
  font-size: 17px;
}
.field label .bi,
.result-card .label .bi {
  margin-right: 5px;
  color: var(--primary);
}
.result-card .label .bi {
  color: #9eaeff;
}
.notice strong .bi {
  margin-right: 5px;
  color: var(--primary);
}
.cta-panel h2 .bi {
  margin-right: 6px;
  color: #8fa3ff;
  font-size: 0.86em;
}
.company .bi {
  margin-right: 4px;
  color: var(--primary);
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.footer-links a .bi {
  color: #939aaa;
}
.footer-links a:hover,
.footer-links a:hover .bi {
  color: var(--primary);
}

@media (max-width: 1024px) {
  .nav-link {
    gap: 4px;
  }
  .nav-link .bi {
    display: none;
  }
}
@media (max-width: 820px) {
  .nav-link .bi {
    display: inline-block;
    width: 20px;
  }
  .menu-btn {
    display: grid;
  }
}
@media (max-width: 560px) {
  .section {
    padding: 62px 0;
  }
  .section-sm {
    padding: 48px 0;
  }
  .card-grid {
    margin-top: 32px;
  }
  .screen-row {
    margin-top: 50px;
  }
  .performance-label .bi {
    width: 25px;
    height: 25px;
  }
}
.reference-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(2, 1fr));
  gap: 24px;
}

/* 첫 번째 카드도 나머지와 동일하게 */
.reference-card.is-featured:first-child,
.reference-card[data-reference-id="1"].is-featured {
  display: block;
  grid-column: auto;
}

.reference-card.is-featured:first-child .reference-image,
.reference-card[data-reference-id="1"].is-featured .reference-image {
  min-height: 0;
  aspect-ratio: 3 / 2;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.reference-image {
  min-height: 0;
  aspect-ratio: 3 / 2;
}

@media (max-width: 560px) {
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .reference-image,
  .reference-card.is-featured:first-child .reference-image {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 820px) {
  .why-conbase-section .card-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .why-conbase-section .card {
    width: 100%;
  }

  .home-mainimg {
    width: 100%;
    margin: 0;
  }
}

.word-keep {
  word-break: keep-all;
}

.site-header .brand {
  min-width: 0;
}

.site-header .brand-text {
  min-width: 0;
}

.site-header .nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header .header-contact-btn {
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .site-header .nav-wrap {
    gap: 10px;
  }

  .site-header .nav-actions {
    gap: 8px;
  }

  .site-header .header-feature-map {
    display: none;
  }

  .site-header .header-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 15px;
  }

  .site-header .header-contact-label {
    display: none;
  }

  .site-header .header-contact-btn i {
    margin: 0;
    font-size: 20px;
  }

  .site-header .menu-btn {
    flex: 0 0 auto;
  }
}

.result-card {
  padding: 26px;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.result-header .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aeb9cd;
  font-size: 12px;
  font-weight: 700;
}

.result-header .label .bi {
  color: #9eaeff;
  font-size: 14px;
}

.vat-badge {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  color: #b9c3d5;
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  font-weight: 700;
}

.result-total {
  margin: 6px 0 16px;
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.result-lines {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.result-line {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.result-line:last-child {
  border-bottom: 0;
}

.result-line > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #aeb8ca;
}

.result-line > span .bi {
  width: 16px;
  color: #91a4ff;
  text-align: center;
  font-size: 13px;
}

.result-line strong {
  color: #fff;
  font-size: 13px;
  text-align: right;
}

.result-detail,
.consult-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}

.result-detail {
  margin: 12px 0 0;
  color: #c0c9d9;
  font-size: 12px;
}

.result-detail .bi {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #91a4ff;
}

.consult-note {
  margin-top: 12px;
  padding: 10px 11px;
  border: 1px solid rgba(158, 174, 255, 0.16);
  border-radius: 11px;
  color: #aeb9cc;
  background: rgba(75, 107, 255, 0.08);
  font-size: 11px;
}

.consult-note .bi {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #9eaeff;
}

.result-consult-btn {
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
}

@media (max-width: 680px) {
  .result-card {
    padding: 22px;
  }

  .result-total {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .result-line {
    min-height: 42px;
  }
}