:root {
  --primary: #0a1c3d;
  --secondary: #153a8a;
  --accent: rgba(122, 170, 255, 0.38);
  --bg: #f4f6fa;
  --text: #0f1f3a;
  --white: #ffffff;
  --line: rgba(10, 28, 61, 0.15);
}

/* 제목·타이틀: Paperlogy (font/title) */
@font-face {
  font-family: "Paperlogy";
  src: url("font/title/Paperlogy-1Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("font/title/Paperlogy-2ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("font/title/Paperlogy-3Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("font/title/Paperlogy-4Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("font/title/Paperlogy-5Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("font/title/Paperlogy-6SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("font/title/Paperlogy-7Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("font/title/Paperlogy-8ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("font/title/Paperlogy-9Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* 본문: Noto Sans KR (font/text) */
@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("font/text/NotoSansKR-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
.btn,
.nav-cta,
.unc-badge,
.unc-confidence-title,
.unc-stats-header-stat,
.unc-stat-num,
.unc-process-num,
.unc-solutions-banner-title,
.unc-solutions-h2,
.unc-solution-card h3,
.unc-legal-section h2,
.final-cta h2,
.final-cta-btn,
.form-section h2,
.site-footer .footer-org,
.difference-as-services__closer {
  font-family: "Paperlogy", "Noto Sans KR", sans-serif;
}

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

.container {
  width: min(1756px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(840px, calc(100% - 40px));
}

.section {
  padding: 90px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(10, 28, 61, 0.84);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: block;
  line-height: 0;
}

.brand-logo {
  height: clamp(56px, 9vw, 96px);
  width: auto;
  max-width: min(380px, 62vw);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.4));
}

.site-header.scrolled .brand-logo {
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 600;
}

/* PC: 로고는 조금 더 오른쪽, 오른쪽 항목(네비)은 조금 더 왼쪽 */
@media (min-width: 1025px) {
  .brand-link {
    margin-left: 200px;
  }

  .desktop-nav {
    margin-right: 200px;
  }
}

.nav-cta {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 4;
  transform: translateX(-50%);
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.hero-scroll-hint:hover,
.hero-scroll-hint:focus-visible {
  opacity: 1;
  outline: none;
}

.hero-scroll-hint:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}

.hero-scroll-hint-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: heroScrollNudge 2.2s ease-in-out infinite;
}

.hero-scroll-hint-text {
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: rgba(255, 255, 255, 0.95);
}

.hero-scroll-hint-mouse {
  position: relative;
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 11px;
  box-sizing: border-box;
}

.hero-scroll-hint-wheel {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  animation: heroScrollWheel 2.2s ease-in-out infinite;
}

.hero-scroll-hint-chevron {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  margin-top: -2px;
}

@keyframes heroScrollNudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes heroScrollWheel {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  45% {
    opacity: 0.2;
    transform: translateY(11px);
  }
  46% {
    opacity: 0;
    transform: translateY(11px);
  }
  47% {
    opacity: 0;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint-inner,
  .hero-scroll-hint-wheel {
    animation: none;
  }
}

.hero h1,
.hero p,
.hero .btn {
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("hero-bg.png") center bottom / cover no-repeat;
  background-color: #0a1528;
  pointer-events: none;
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 28, 61, 0.55) 0%,
    rgba(10, 28, 61, 0.42) 45%,
    rgba(10, 28, 61, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(100vh, 900px);
}

.hero-copy {
  color: var(--white);
  text-align: center;
  width: 100%;
  max-width: min(36em, 92vw);
  margin: 0 auto;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.65;
}

.hero-kicker {
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  color: rgba(210, 225, 255, 0.92);
  line-height: 1.5;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero .hero-title {
  animation: heroTitleFloat 3.5s ease-in-out infinite;
  letter-spacing: -0.03em;
  line-height: 1.38;
  margin: 0 0 22px;
  font-weight: 700;
}

.hero-title-accent {
  color: #9ec0ff;
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.07em;
  animation: titleDrift 5.8s ease-in-out infinite;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
  text-align: center;
}

.hero-sub {
  margin: 0 0 20px;
  color: rgba(233, 239, 255, 0.96);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.hero-desc-block {
  margin: 0 0 32px;
}

.hero-desc {
  margin: 0;
  color: rgba(210, 225, 255, 0.92);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.65;
}

.hero-desc--sub {
  margin-top: 8px;
  font-size: clamp(13px, 1.05vw, 16px);
  color: rgba(200, 218, 255, 0.88);
  line-height: 1.6;
}

.hero-desc-highlight {
  font-weight: 700;
  font-size: clamp(15px, 1.25vw, 19px);
  color: var(--white);
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  min-width: 180px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(140deg, var(--secondary), #2f63d8);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 18px 34px rgba(21, 58, 138, 0.32);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.lead-copy {
  margin: 0 0 36px;
  color: rgba(15, 31, 58, 0.9);
  font-size: clamp(16px, 1.3vw, 21px);
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cards-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-section {
  background: linear-gradient(150deg, #0a1c3d, #102a5d);
  color: var(--white);
}

.process-section h2 {
  color: var(--white);
}

.process-section .lead-copy {
  color: rgba(224, 234, 255, 0.95);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
}

.process-step {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: rgba(233, 239, 255, 0.9);
  font-weight: 700;
}

.process-card h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--white);
}

.process-card p {
  margin: 0;
  line-height: 1.7;
  text-align: center;
  font-size: 15px;
  color: rgba(233, 239, 255, 0.85);
}

/* 3섹션 – 왜 광고는 전문가에게 */
.expert-section {
  position: relative;
  background: url("expert-bg.png") center / cover no-repeat;
}

.expert-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 61, 0.58);
  pointer-events: none;
}

.expert-section .container {
  position: relative;
  z-index: 1;
}

.expert-section h2 {
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.expert-section .lead-copy {
  text-align: center;
  font-weight: 600;
  font-size: clamp(17px, 1.35vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.compare-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.compare-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.98));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10, 28, 61, 0.06);
}

.compare-card h3 {
  font-size: clamp(18px, 1.4vw, 21px);
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text);
  line-height: 1.35;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.compare-card li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  padding-left: 0;
  color: var(--text);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.compare-card li::before {
  content: "·";
  flex-shrink: 0;
  color: var(--secondary);
  font-weight: 700;
}

.compare-card-unc {
  
  border-color: rgba(21, 58, 138, 0.3);
}

.compare-card-unc h3 {
  color: var(--secondary);
  font-weight: 800;
}

.compare-card-unc li {
  color: var(--primary);
}

.compare-card-unc li::before {
  content: "✓";
  font-size: 0.9em;
}

.expert-section .expert-emphasis {
  text-align: center;
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.solutions-section {
  background: var(--white);
}

.solution-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.solution-tags span {
  border: 1px solid rgba(10, 28, 61, 0.2);
  border-radius: 14px;
  padding: 14px 16px 14px 18px;
  background: #f7faff;
  font-weight: 700;
  color: #12306a;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-height: 56px;
  text-align: left;
}

.solution-icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

/* 5섹션 – 통합 솔루션 */
.integration-section {
  position: relative;
  background: url("solutions-bg.png") center / cover no-repeat;
}

.integration-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 61, 0.72);
  pointer-events: none;
}

.integration-section .container {
  position: relative;
  z-index: 1;
}

.integration-section h2 {
  color: var(--white);
}

.integration-section .lead-copy {
  color: rgba(224, 234, 255, 0.95);
}

.integration-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.integration-area {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(10, 28, 61, 0.06);
}

.integration-area h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: left;
}

.integration-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(244, 246, 250, 0.8);
  border: 1px solid rgba(21, 58, 138, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.integration-item:hover {
  background: rgba(235, 242, 255, 0.9);
  border-color: rgba(21, 58, 138, 0.15);
}

.integration-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  object-fit: contain;
}

.integration-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.integration-telecom {
  border-color: rgba(21, 58, 138, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(242, 248, 255, 0.98));
}

.integration-telecom .integration-item {
  background: rgba(248, 252, 255, 0.9);
}

.integration-telecom .integration-item:hover {
  background: rgba(235, 245, 255, 0.95);
}

/* 6섹션 – 성과 증명 */
.proof-section {
  background: linear-gradient(150deg, #0a1c3d, #102a5d);
  color: var(--white);
}

.proof-section .lead-copy {
  color: rgba(224, 234, 255, 0.95);
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.proof-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.proof-chart {
  margin: 0 auto 24px;
  width: 100%;
  max-width: 180px;
}

.proof-chart svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.proof-label {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(233, 239, 255, 0.9);
}

.proof-metric {
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: var(--white);
}

.proof-detail {
  margin: 0;
  font-size: 14px;
  color: rgba(233, 239, 255, 0.85);
}

.metric-section {
  background: linear-gradient(150deg, #0a1c3d, #102a5d);
  color: var(--white);
}

.metric-section .lead-copy {
  color: rgba(224, 234, 255, 0.9);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid article {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.metric-grid strong {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.metric-grid p {
  margin: 0;
  color: rgba(238, 244, 255, 0.95);
}

.service-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(242, 246, 255, 0.95));
  border: 1px solid rgba(21, 58, 138, 0.14);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}

.card-image {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  animation: floatSoft 4.6s ease-in-out infinite;
}

.service-num {
  margin: 0 0 12px;
  color: var(--secondary);
  font-size: 26px;
  font-weight: 700;
}

.service-card ul {
  padding-left: 0;
  margin: 0;
  list-style-position: inside;
  text-align: center;
}

.dark-section {
  color: var(--white);
  background: radial-gradient(circle at 10% 0%, rgba(62, 96, 182, 0.5), transparent 48%), linear-gradient(140deg, #08152e, #0a1c3d);
}

.difference-intro {
  margin: 14px 0 0;
  color: rgba(226, 236, 255, 0.94);
  font-size: clamp(16px, 1.2vw, 20px);
  text-align: center;
}

.difference-flow {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.difference-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(173, 198, 255, 0.2), rgba(173, 198, 255, 0.55), rgba(173, 198, 255, 0.2));
  z-index: 0;
}

.flow-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 14px 12px 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(2px);
}

.flow-card span {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(155, 188, 255, 0.2);
  border: 1px solid rgba(181, 208, 255, 0.35);
  display: grid;
  place-items: center;
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(190, 210, 255, 0.92);
}

.flow-card strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-card p {
  margin: 0;
  color: rgba(223, 236, 255, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.operations-section {
  background: var(--white);
}

.infra-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.infra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 10px;
  background: #f9fbff;
}

.infra-image {
  width: 68px;
  height: 68px;
  object-fit: contain;
  animation: floatSoft 4.2s ease-in-out infinite;
}

.solution-tags span {
  position: relative;
  overflow: hidden;
}

.solution-tags span .solution-icon {
  animation: floatSoft 4s ease-in-out infinite;
}

.service-card:nth-child(2) .card-image,
.process-card:nth-child(2) .card-image,
.infra-item:nth-child(2) .infra-image,
.solution-tags span:nth-child(2) .solution-icon,
.solution-tags span:nth-child(6) .solution-icon {
  animation-delay: 0.35s;
}

.service-card:nth-child(3) .card-image,
.process-card:nth-child(3) .card-image,
.infra-item:nth-child(3) .infra-image,
.solution-tags span:nth-child(3) .solution-icon,
.solution-tags span:nth-child(7) .solution-icon {
  animation-delay: 0.7s;
}

.process-card:nth-child(4) .card-image,
.infra-item:nth-child(4) .infra-image,
.solution-tags span:nth-child(4) .solution-icon,
.solution-tags span:nth-child(8) .solution-icon {
  animation-delay: 1.05s;
}

.solution-tags span:nth-child(5) .solution-icon {
  animation-delay: 1.3s;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.03);
  }
}

@keyframes titleDrift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes heroTitleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  h1,
  h2,
  .card-image,
  .infra-image,
  .solution-tags span .solution-icon {
    animation: none;
  }
}

.trust-section {
  background: linear-gradient(180deg, #f4f6fa, #e9eef8);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  background: var(--white);
  text-align: center;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 720px;
  padding: 146px 20px 80px;
  background: #fff;
  color: #fff;
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url(images/h-8-banner.png) center / cover no-repeat;
  background-color: #0a1c3d;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 900px;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.125;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
}

.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 24px 18px 20px;
  border: 2px solid #fff;
  border-radius: 5px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.3s, background-color 0.3s;
}

.final-cta-btn:hover {
  border-color: #235ec5;
  background-color: #235ec5;
}

.final-cta-btn-arrow {
  display: block;
  width: 16px;
  height: 16px;
}

.final-cta-btn-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ===== unc-mkt 스타일 (2섹션~) ===== */
.unc-confidence-section {
  background: #eef2f7;
  text-align: center;
  padding: 0;
}

/* PC: 좌우 여백 없이 큼직한 카드 */
.unc-confidence-card {
  background: linear-gradient(180deg, #f8fafd 0%, var(--white) 100%);
  padding: 88px 32px 96px;
  margin: 0;
  box-shadow: 0 4px 24px rgba(10, 28, 61, 0.06);
}

.unc-confidence-inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.unc-confidence-section .unc-badge {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--secondary);
  font-weight: 800;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.unc-confidence-title,
.unc-confidence-section h2 {
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.28;
  margin: 0;
  color: #0a1c3d;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* PC 1024px 이상: 카드 풀폭, 좌우 여백 최소 */
@media (min-width: 1024px) {
  .unc-confidence-card {
    padding: 100px 40px 112px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .unc-confidence-section .unc-badge {
    font-size: 16px;
    letter-spacing: 0.32em;
    margin-bottom: 28px;
  }

  .unc-confidence-title,
  .unc-confidence-section h2 {
    font-size: clamp(40px, 3.8vw, 62px);
  }
}

/* 모바일: 카드에 좌우 여백 */
@media (max-width: 823px) {
  .unc-confidence-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .unc-confidence-card {
    padding: 56px 24px 64px;
    border-radius: 16px;
  }
}

.unc-big-stat {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--secondary);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.unc-stat-desc {
  font-size: 15px;
  color: rgba(15, 31, 58, 0.75);
  margin: 0;
}

.unc-stats-section {
  background: #eef2f7;
}

/* 3섹션 헤더: 가로 카드 하나에 담기 */
.unc-stats-header-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(10, 28, 61, 0.08);
  border: 1px solid rgba(21, 58, 138, 0.1);
}

.unc-stats-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.unc-stats-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.unc-stats-header-icon {
  font-size: 42px;
  line-height: 1;
  filter: grayscale(0.2);
}

.unc-stats-header-stat {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #2d3a7c;
  margin: 0;
  letter-spacing: 0.02em;
}

.unc-stats-header-desc {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  color: #0a1c3d;
  margin: 0;
  line-height: 1.45;
}

.unc-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

/* 3섹션 카드: 문구·이미지·높이 전부 일정하게 */
.unc-stat-card {
  position: relative;
  background: var(--white);
  border: none;
  border-radius: 12px;
  padding: 20px 16px 28px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(10, 28, 61, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 252px;
  padding-bottom: 33px;
}

.unc-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #1e68e7;
  border-radius: 0 0 12px 12px;
}

.unc-stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.unc-stat-label {
  font-size: 16px;
  letter-spacing: 0;
  color: #9ab0d6;
  font-weight: 600;
  line-height: 1;
}

.unc-stat-burst {
  font-size: 18px;
  color: #86a0ee;
  line-height: 1;
  flex-shrink: 0;
}

.unc-stat-emoji {
  width: 60px;
  height: 89px;
  font-size: 56px;
  line-height: 1;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.unc-stat-num {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e68e7;
  margin: 0 0 8px;
  line-height: 1;
  flex-shrink: 0;
}

.unc-stat-card h3 {
  font-size: 20px;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #333;
  font-weight: 700;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* PC: 동일 높이·일정한 크기 유지, 카드 높이 더 길게 */
@media (min-width: 1024px) {
  .unc-stats-grid {
    gap: 24px;
    margin-bottom: 32px;
  }

  .unc-stat-card {
    min-height: 400px;
    padding: 48px 20px 33px;
    border-radius: 14px;
  }

  .unc-stat-card-top {
    margin-bottom: 16px;
  }

  .unc-stat-emoji {
    width: 60px;
    height: 89px;
    font-size: 56px;
    margin-bottom: 12px;
  }

  .unc-stat-num {
    font-size: 44px;
    margin-bottom: 8px;
  }

  .unc-stat-card h3 {
    font-size: 20px;
    line-height: 1.2;
  }
}

/* 6xl 이하: 카드 높이 252px 유지, 아이콘·숫자만 약간 축소 */
@media (max-width: 1152px) {
  .unc-stat-card {
    min-height: 252px;
  }

  .unc-stat-emoji {
    width: 55px;
    height: 85px;
    font-size: 50px;
  }

  .unc-stat-num {
    font-size: 38px;
  }

  .unc-stat-card h3 {
    font-size: 18px;
  }
}

/* 태블릿 2열: 높이 220px */
@media (max-width: 1023px) {
  .unc-stat-card {
    min-height: 220px;
    padding: 16px 14px 29px;
  }

  .unc-stat-emoji {
    width: 45px;
    height: 70px;
    font-size: 42px;
    margin-bottom: 10px;
  }

  .unc-stat-num {
    font-size: 36px;
    margin-bottom: 6px;
  }

  .unc-stat-card h3 {
    font-size: 18px;
  }

  .unc-stat-label {
    font-size: 14px;
  }
}

/* 모바일 1열: 높이 200px */
@media (max-width: 480px) {
  .unc-stat-card {
    min-height: 200px;
    padding: 14px 12px 25px;
  }

  .unc-stat-emoji {
    width: 40px;
    height: 60px;
    font-size: 36px;
    margin-bottom: 8px;
  }

  .unc-stat-num {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .unc-stat-card h3 {
    font-size: 16px;
  }

  .unc-stat-label {
    font-size: 13px;
  }
}

.unc-phone-wrap {
  text-align: center;
  margin: 0;
}

.unc-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
}

.unc-story-section {
  position: relative;
  background: linear-gradient(145deg, #0a1c3d, #153a8a);
  text-align: center;
}

.unc-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 61, 0.45);
  z-index: 0;
}

.unc-story-section .container {
  position: relative;
  z-index: 1;
}

.unc-story-text {
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.7;
  color: #fff;
  margin: 0 0 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.unc-story-text .unc-story-accent {
  color: #0df;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 221, 255, 0.5);
}

.unc-story-sub {
  font-size: clamp(17px, 1.2vw, 20px);
  color: #fff;
  margin: 0 0 28px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.unc-story-sub .unc-story-accent {
  color: #0df;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(0, 221, 255, 0.5);
}

.unc-intro-link {
  display: inline-block;
  padding: 14px 28px;
  font-size: 17px;
  background: rgba(255, 255, 255, 0.95);
  color: #0a1c3d;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s;
}

.unc-intro-link:hover {
  opacity: 0.9;
}

.unc-process-section {
  background: #fff;
  color: var(--text);
}

.unc-process-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: #0a1c3d;
  margin: 0 auto 12px;
  line-height: 1.6;
  text-align: center;
}

.unc-process-section h2 {
  color: #0a1c3d;
  margin: 0 auto 32px;
  text-align: center;
}

.unc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 24px;
}

.unc-process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* 2초마다 순환되는 호버 효과: 활성 카드가 커지고 색 강조 */
.unc-process-card.is-active {
  transform: scale(1.06);
  z-index: 2;
}

.unc-process-card.is-active .unc-process-card-image {
  box-shadow: 0 8px 32px rgba(101, 158, 255, 0.35);
}

.unc-process-card.is-active .unc-process-card-image-bar {
  background: #7aabff;
  box-shadow: 0 0 12px rgba(122, 171, 255, 0.6);
}

.unc-process-card.is-active .unc-process-num {
  color: #7aabff;
}

/* 각 단계 설명 위 이미지 영역 */
.unc-process-card-image {
  transition: box-shadow 0.5s ease;
  position: relative;
  width: 100%;
  height: 280px;
  min-height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f2f5;
  flex-shrink: 0;
}

.unc-process-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unc-process-card-image-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #659eff;
  z-index: 1;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.unc-process-card-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  margin-bottom: 16px;
}

.unc-process-card-check {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  line-height: 0;
}

.unc-process-card-check svg {
  display: block;
  width: 28px;
  height: 28px;
}

.unc-process-card.is-active .unc-process-card-check {
  opacity: 1;
}

.unc-process-num {
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 800;
  color: #1659cb;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  transition: color 0.5s ease;
}

.unc-process-card h3 {
  font-size: clamp(18px, 1.4vw, 22px);
  margin: 0;
  color: #0a1c3d;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
  transition: color 0.5s ease;
}

.unc-process-card.is-active .unc-process-card-title h3 {
  color: #1659cb;
}

.unc-process-card p {
  margin: 0;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.5;
  color: #454545;
  letter-spacing: -0.02em;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .unc-process-card-image {
    height: 240px;
    min-height: 180px;
  }

  .unc-process-card-title {
    margin-top: 22px;
    margin-bottom: 12px;
  }
}

@media (max-width: 1024px) {
  .unc-process-grid {
    gap: 24px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .unc-process-card-image {
    height: 220px;
    min-height: 170px;
  }

  .unc-process-card-title {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .unc-process-grid {
    grid-template-columns: 1fr;
    max-width: 390px;
    gap: 28px;
  }

  .unc-process-card-image {
    height: 200px;
    min-height: 170px;
  }

  .unc-process-card-title {
    margin-top: 18px;
    margin-bottom: 10px;
  }
}

.unc-solutions-section {
  background: linear-gradient(180deg, #114296 14.17%, #0a7c86 100%);
  color: #fff;
  padding-top: 100px;
  padding-bottom: 104px;
}

.unc-solutions-intro {
  position: relative;
  z-index: 1;
}

.unc-solutions-lead {
  font-size: clamp(20px, 2vw, 36px);
  line-height: 1.39;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}

.unc-solutions-banner {
  position: relative;
  margin-top: 52px;
  margin-bottom: 79px;
  height: 300px;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), #0a5a62 url(images/h-6-banner.png) center / cover no-repeat;
}

/* 차별화 섹션만 상단 배너 이미지 분리 */
.difference-as-services .unc-solutions-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), #0f1419 url(images/h-8-banner.png) center / cover no-repeat;
}

.unc-solutions-banner-inner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  max-width: min(1756px, calc(100% - 40px));
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}

.unc-solutions-banner-title {
  font-size: clamp(24px, 4vw, 60px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.unc-solutions-section .container:last-of-type {
  position: relative;
  z-index: 1;
}

.unc-solutions-h2 {
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 0;
  text-align: left;
}

.unc-solutions-grid {
  list-style: none;
  margin: 72px 0 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border-radius: 10px;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

.unc-solutions-grid li {
  margin: 0;
}

.unc-solution-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 100px;
  padding: 0 30px;
  color: #0a1c3d;
  text-decoration: none;
  transition: background 0.2s;
}

.unc-solution-card:hover {
  background: rgba(0, 0, 0, 0.03);
}

.unc-solution-card-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.unc-solution-icon {
  flex-shrink: 0;
  width: 41px;
  height: 35px;
  border-radius: 6px;
  background: linear-gradient(135deg, #83b6ff, #3a54f9);
}

.unc-solution-card h3 {
  font-size: clamp(20px, 1.8vw, 32px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: inherit;
  text-align: left;
}

.unc-solution-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.unc-solution-card:hover .unc-solution-arrow {
  opacity: 1;
}

.unc-solution-en {
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.07);
  margin: 0;
  transition: color 0.3s;
}

.unc-solution-card:hover .unc-solution-en {
  color: rgba(118, 163, 254, 0.5);
}

.br-mobile {
  display: block;
}

@media (min-width: 601px) {
  .br-mobile {
    display: none;
  }
}

@media (max-width: 900px) {
  .unc-solutions-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .unc-solutions-banner {
    margin-top: 40px;
    margin-bottom: 50px;
    height: 280px;
  }
  .unc-solutions-grid {
    margin-top: 48px;
    padding: 12px 0;
  }
  .unc-solution-card {
    min-height: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .unc-solution-card-left {
    gap: 12px;
  }
  .unc-solution-icon {
    width: 35px;
    height: 30px;
  }
}

@media (max-width: 600px) {
  .unc-solutions-section {
    padding-top: 41px;
    padding-bottom: 33px;
  }
  .unc-solutions-lead {
    font-size: 20px;
    line-height: 1.2;
  }
  .unc-solutions-banner {
    margin-top: 44px;
    margin-bottom: 45px;
    height: 220px;
  }
  .unc-solutions-banner-title {
    font-size: 24px;
    line-height: 1.25;
  }
  .unc-solutions-h2 {
    font-size: 32px;
    line-height: 1.25;
  }
  .unc-solutions-grid {
    margin-top: 36px;
    padding: 10px 0;
  }
  .unc-solution-card {
    min-height: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .unc-solution-en {
    display: none;
  }
  .unc-solution-arrow {
    opacity: 1;
    margin-left: auto;
  }
  .unc-solution-icon {
    width: 30px;
    height: 25px;
  }
  .unc-solution-card h3 {
    font-size: 20px;
  }
}

.unc-legal-section {
  padding-top: 99px;
  padding-bottom: 95px;
}

.unc-legal-container {
  max-width: min(1920px, 100%);
}

.unc-legal-card {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  padding: 108px 58px 0;
}

.unc-legal-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15)), url(images/h-8-banner.png) center / cover no-repeat;
  background-color: #0d2137;
  z-index: 0;
}

.unc-legal-card-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.unc-legal-section h2 {
  margin: 0 0 32px;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.unc-legal-desc {
  margin: 0 0 46px;
  font-size: clamp(16px, 1.4vw, 24px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
}

.unc-legal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 199px;
  height: 44px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.2);
  font-size: clamp(13px, 1.2vw, 20px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}

.unc-legal-cta:hover {
  background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 1200px) {
  .unc-legal-card {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1024px) {
  .unc-legal-section {
    padding-top: 40px;
    padding-bottom: 58px;
  }
  .unc-legal-card {
    height: 300px;
    padding-top: 90px;
  }
  .unc-legal-section h2 {
    margin-bottom: 28px;
  }
  .unc-legal-desc {
    margin-bottom: 30px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .unc-legal-card {
    height: 280px;
    padding-top: 85px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .unc-legal-section h2 {
    margin-bottom: 24px;
    font-size: 32px;
  }
  .unc-legal-desc {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .unc-legal-cta {
    width: 150px;
    height: 35px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .unc-legal-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .unc-legal-card {
    height: 260px;
    padding: 83px 20px 0;
  }
  .unc-legal-section h2 {
    margin-bottom: 15px;
    font-size: 24px;
  }
  .unc-legal-desc {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 1.5;
  }
  .unc-legal-cta {
    width: 130px;
    height: 29px;
    font-size: 13px;
  }
}

.final-cta-desc {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 28px);
  line-height: 1.285;
  letter-spacing: -0.04em;
  color: #fff;
  text-align: center;
}

.final-cta-desc br.br-desktop {
  display: none;
}

@media (min-width: 601px) {
  .final-cta-desc br.br-desktop {
    display: block;
  }
}

@media (max-width: 900px) {
  .final-cta {
    min-height: 660px;
    padding-top: 100px;
  }
  .final-cta-content {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .final-cta {
    min-height: 600px;
    padding-top: 80px;
  }
  .final-cta-content {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .final-cta {
    min-height: 560px;
    padding: 60px 20px 60px;
  }
  .final-cta-content {
    gap: 35px;
  }
  .final-cta-btn {
    padding: 12px 14px 12px 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .final-cta {
    min-height: 480px;
    padding-top: 99px;
  }
}

.form-section {
  background: var(--white);
}

.consult-form {
  display: grid;
  gap: 14px;
}

.consult-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.consult-form input,
.consult-form textarea,
.consult-form select {
  width: 100%;
  border: 1px solid rgba(10, 28, 61, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  background: var(--white);
}

.consult-form select {
  cursor: pointer;
}

.profile-photo-wrap {
  margin: 32px auto 12px;
  max-width: min(560px, 94vw);
  padding: 0;
  border: 0;
}

.profile-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(10, 28, 61, 0.14), 0 4px 16px rgba(10, 28, 61, 0.08);
}

.profile-section-body {
  margin: 24px 0 0;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
  color: rgba(15, 31, 58, 0.88);
}

.profile-section-body p {
  margin: 0 0 14px;
}

.profile-section-body p:last-child {
  margin-bottom: 0;
}

.profile-section-body strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  color: #0a1c3d;
}

.profile-section-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 28, 61, 0.08);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(15, 31, 58, 0.78);
}

/* ===== 문제 인식 섹션 (지그재그 · 스크롤 등장) ===== */
.problem-section.unc-stats-section {
  background: linear-gradient(165deg, #e4eaf3 0%, #d8e2ef 38%, #e2e9f4 100%);
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0a1c3d, #1a4a8c, #3d7ddd, #7aabff);
  opacity: 0.95;
  pointer-events: none;
}

.problem-section__container {
  position: relative;
  z-index: 1;
  max-width: min(820px, 100%);
}

.problem-intro {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 56px);
}

.problem-intro__kicker {
  margin: 0 0 14px;
  font-family: "Paperlogy", "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-indent: 0.38em;
  color: #8b2942;
  text-transform: uppercase;
}

.problem-section-title {
  margin: 0 0 18px;
  font-size: clamp(26px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.04em;
  color: #061027;
  animation: none;
}

.problem-section-title__accent {
  color: #9a2740;
  position: relative;
  text-decoration: underline;
  text-decoration-color: rgba(154, 39, 64, 0.35);
  text-underline-offset: 6px;
}

.problem-intro__lead {
  margin: 0 auto;
  max-width: 34em;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.75;
  color: rgba(6, 16, 39, 0.78);
  font-weight: 500;
}

.problem-zigzag {
  position: relative;
  margin: 0 auto;
  padding: 8px 0 12px;
  max-width: 640px;
}

.problem-zigzag__rail {
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 120px;
  width: 3px;
  margin-left: -1.5px;
  background: rgba(10, 28, 61, 0.08);
  border-radius: 3px;
  overflow: hidden;
  z-index: 0;
}

.problem-zigzag__rail-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #7aabff, #2d5a9e, #0a1c3d);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.problem-section.is-visible .problem-zigzag__rail-fill {
  transform: scaleY(1);
}

.problem-card {
  position: relative;
  z-index: 1;
  width: min(88%, 400px);
  margin-bottom: clamp(22px, 4vw, 32px);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.problem-card--left {
  margin-right: auto;
  margin-left: 0;
  transform: translate(-36px, 40px);
}

.problem-card--right {
  margin-left: auto;
  margin-right: 0;
  transform: translate(36px, 40px);
}

.problem-section.is-visible .problem-card {
  opacity: 1;
  transform: translate(0, 0);
}

.problem-section.is-visible .problem-card:nth-of-type(2) {
  transition-delay: 0.18s;
}

.problem-section.is-visible .problem-card:nth-of-type(3) {
  transition-delay: 0.36s;
}

.problem-card__inner {
  position: relative;
  padding: clamp(22px, 3.5vw, 30px) clamp(22px, 3vw, 28px) clamp(24px, 3.5vw, 32px);
  background: linear-gradient(145deg, rgba(6, 16, 39, 0.97) 0%, #0d1f3d 48%, #0a1730 100%);
  border: 1px solid rgba(122, 171, 255, 0.22);
  border-radius: 16px;
  box-shadow:
    0 24px 48px rgba(6, 16, 39, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
}

.problem-card__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(122, 171, 255, 0.65), transparent);
  opacity: 0.9;
}

.problem-card__node {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 50%;
  background: linear-gradient(145deg, #b8d4ff, #4a7ddd);
  box-shadow: 0 0 0 4px rgba(10, 28, 61, 0.4), 0 0 20px rgba(122, 171, 255, 0.45);
  z-index: 2;
}

.problem-card--left .problem-card__node {
  right: -7px;
  transform: translateX(50%);
}

.problem-card--right .problem-card__node {
  left: -7px;
  transform: translateX(-50%);
}

.problem-card__step {
  display: block;
  font-family: "Paperlogy", "Noto Sans KR", sans-serif;
  font-size: clamp(38px, 7vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #e8f0ff 0%, #7aabff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.problem-card__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(158, 184, 230, 0.65);
  margin-bottom: 12px;
}

.problem-card__title {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: left;
}

.problem-card__text {
  margin: 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
  color: rgba(210, 225, 255, 0.82);
  text-align: left;
}

.problem-card--right .problem-card__title,
.problem-card--right .problem-card__text {
  text-align: right;
}

.problem-card--right .problem-card__step,
.problem-card--right .problem-card__label {
  text-align: right;
}

.problem-emphasis {
  margin: clamp(28px, 5vw, 44px) auto 0;
  max-width: 100%;
  padding: clamp(22px, 3.5vw, 28px) clamp(20px, 4vw, 32px);
  text-align: center;
  background: linear-gradient(135deg, #0a1c3d 0%, #122a52 50%, #0f2450 100%);
  border: 1px solid rgba(122, 171, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(6, 16, 39, 0.22);
}

.problem-emphasis__text {
  margin: 0;
  position: relative;
  display: inline-block;
  font-family: "Paperlogy", "Noto Sans KR", sans-serif;
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.problem-emphasis__text strong {
  color: #9ec0ff;
  font-weight: 800;
}

.problem-emphasis__mark {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  vertical-align: 0.2em;
  border-radius: 50%;
  background: linear-gradient(145deg, #7aabff, #3d7ddd);
  box-shadow: 0 0 12px rgba(122, 171, 255, 0.7);
}

@media (max-width: 720px) {
  .problem-zigzag__rail {
    display: none;
  }

  .problem-card__node {
    display: none;
  }

  .problem-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .problem-card--left,
  .problem-card--right {
    transform: translateY(40px);
  }

  .problem-section.is-visible .problem-card--left,
  .problem-section.is-visible .problem-card--right {
    transform: translateY(0);
  }

  .problem-card--left .problem-card__inner {
    margin-right: 10%;
    margin-left: 0;
  }

  .problem-card--right .problem-card__inner {
    margin-left: 10%;
    margin-right: 0;
  }

  .problem-card__title,
  .problem-card__text,
  .problem-card__step,
  .problem-card__label {
    text-align: left;
  }

  .problem-card--right .problem-card__title,
  .problem-card--right .problem-card__text,
  .problem-card--right .problem-card__step,
  .problem-card--right .problem-card__label {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .problem-card--left .problem-card__inner,
  .problem-card--right .problem-card__inner {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .problem-card,
  .problem-card--left,
  .problem-card--right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .problem-zigzag__rail-fill {
    transform: scaleY(1);
    transition: none;
  }
}

/* ===== 차별화 섹션 (Services와 동일 톤: 그라데이션 + 배너 + 흰색 그리드) ===== */
.difference-as-services .unc-solutions-intro {
  text-align: center;
}

.difference-as-services__kicker {
  margin: 0 0 18px;
  font-family: "Paperlogy", "Noto Sans KR", sans-serif;
  font-size: clamp(12px, 1.35vw, 15px);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.difference-as-services .unc-solutions-intro .difference-as-services__title {
  margin: 0 0 22px;
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
  animation: none;
  font-size: clamp(28px, 4.8vw, 52px);
  line-height: 1.22;
  font-weight: 700;
}

.difference-as-services__title strong {
  color: #fff;
  font-weight: 800;
}

.difference-as-services__sub {
  margin: 0 auto;
  max-width: 34em;
  font-size: clamp(18px, 2.15vw, 26px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.difference-as-services__sub strong {
  color: #fff;
  font-weight: 800;
}

.difference-as-services__bottom {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.difference-as-services__panel {
  margin-top: 4px;
  padding: clamp(28px, 4.5vw, 44px) clamp(16px, 2.5vw, 24px) clamp(24px, 3.5vw, 36px);
  border-radius: 16px;
  background: linear-gradient(165deg, #e4f0f4 0%, #dce8f2 42%, #e8eef8 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 48px rgba(8, 24, 48, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  box-sizing: border-box;
}

.difference-as-services__panel .difference-as-services__h3 {
  margin: 0;
  color: #061027;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
  text-align: center;
}

.difference-as-services .unc-solutions-grid {
  margin-top: clamp(28px, 4vw, 40px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(10, 28, 61, 0.06);
}

.difference-as-services__closer {
  margin: clamp(36px, 6vw, 52px) 0 0;
  padding: 0 12px;
  text-align: center;
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
  .difference-as-services .unc-solutions-intro .difference-as-services__title {
    font-size: clamp(24px, 6.8vw, 36px);
    line-height: 1.2;
  }

  .difference-as-services__sub {
    font-size: clamp(16px, 4.2vw, 20px);
  }

  .difference-as-services__panel .difference-as-services__h3 {
    font-size: clamp(28px, 7.2vw, 40px);
  }

  .difference-as-services__closer {
    font-size: clamp(22px, 5.8vw, 32px);
  }

  .difference-as-services .unc-solution-card {
    min-height: 76px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .difference-as-services__panel {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.footer-org {
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 800;
  margin: 0 0 12px;
  color: rgba(240, 246, 255, 0.98);
}

.footer-lines {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(200, 218, 255, 0.88);
}

.footer-tagline {
  margin: 22px 0 0;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: rgba(180, 205, 248, 0.9);
  font-weight: 500;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 340px);
  height: 100vh;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  background: linear-gradient(180deg, #08152e, #0a1c3d);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-inner {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 12px 16px 20px;
  box-sizing: border-box;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding: 4px 2px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-title {
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin: -4px -6px -4px 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.65);
}

.drawer-close:focus-visible {
  outline: 2px solid rgba(122, 171, 255, 0.95);
  outline-offset: 3px;
}

.drawer-close:active {
  transform: scale(0.96);
}

.drawer-close-icon {
  display: block;
  width: 22px;
  height: 22px;
}

.drawer-nav {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 20px;
  justify-items: center;
  overflow-y: auto;
  min-height: 0;
}

.drawer-nav a {
  color: rgba(236, 243, 255, 0.96);
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 8px;
  text-align: center;
  width: min(220px, 100%);
}

.drawer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.drawer-logo {
  width: auto;
  max-width: min(240px, 78vw);
  max-height: 88px;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1100;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sticky-cta {
  display: none;
}

.site-footer {
  background: #061027;
  color: rgba(225, 236, 255, 0.9);
  border-top: 1px solid rgba(173, 201, 255, 0.15);
}

.footer-inner {
  padding: 44px 0 30px;
  text-align: center;
}

.footer-logo {
  width: min(440px, 88vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(205, 223, 255, 0.95);
}

.footer-info {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(188, 209, 246, 0.85);
}

.footer-copyright {
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(170, 194, 236, 0.8);
}

.top-button {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1040;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(21, 58, 138, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.top-button.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

  .cards-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .compare-cards {
    grid-template-columns: 1fr;
  }

  .integration-layout {
    grid-template-columns: 1fr;
  }

  .proof-cards {
    grid-template-columns: 1fr;
  }

  .unc-stats-header-card {
    padding: 22px 20px;
  }

  .unc-stats-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .unc-stats-header-left {
    justify-content: center;
  }

  .unc-stats-header-desc {
    font-size: clamp(17px, 4.2vw, 20px);
  }

  .unc-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .unc-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .unc-solutions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .difference-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .difference-flow::before {
    display: none;
  }

  .solution-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .infra-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-inner {
    min-height: 118px;
    height: 118px;
  }

  .brand-logo {
    height: clamp(76px, 20vw, 104px);
    max-width: min(360px, 84vw);
  }

  .hero {
    align-items: flex-start;
    min-height: calc(100vh - 70px);
    min-height: calc(100dvh - 70px);
  }

  .hero-content {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 28px;
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(30px, 7vw, 42px);
  }

  .hero .hero-title {
    font-size: clamp(45px, 10.5vw, 63px);
    line-height: 1.3;
    margin: 0 0 18px;
  }

  .hero-kicker {
    font-size: clamp(18px, 4.2vw, 22px);
    margin: 0 0 12px;
    letter-spacing: 0.1em;
  }

  .hero-sub {
    font-size: 24px;
    line-height: 1.45;
    margin: 0 0 18px;
  }

  .hero-desc {
    font-size: 21px;
    line-height: 1.55;
  }

  .hero-desc--sub {
    font-size: clamp(19px, 4.5vw, 24px);
    margin-top: 10px;
  }

  .hero-desc-block {
    margin: 0 0 26px;
  }

  .hero-actions {
    gap: 14px;
  }

  .hero-actions .btn {
    font-size: clamp(17px, 4.2vw, 22px);
    padding: 16px 22px;
    min-height: 52px;
  }

  .cards-grid,
  .cards-grid-4,
  .trust-grid,
  .process-grid,
  .compare-cards,
  .proof-cards,
  .unc-stats-header-desc {
    text-align: center;
  }

  .unc-stat-emoji {
    font-size: 40px;
  }

  .unc-stats-grid,
  .unc-process-grid,
  .unc-solutions-grid {
    grid-template-columns: 1fr;
  }

  .solution-tags {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .solution-tags span {
    min-height: 86px;
    padding: 14px 10px;
    border-radius: 12px;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.35;
  }

  .solution-icon {
    width: 40px;
    height: 40px;
  }

  .difference-flow {
    grid-template-columns: 1fr 1fr;
  }

  .flow-card {
    min-height: 128px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(7, 16, 34, 0.92);
    backdrop-filter: blur(6px);
  }

  .mobile-sticky-cta .btn {
    padding: 12px 10px;
    font-size: 14px;
  }

  .mobile-sticky-cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
  }

  .top-button {
    right: 14px;
    bottom: 92px;
  }

  .footer-inner {
    padding: 38px 0 24px;
  }

  .footer-logo {
    width: min(380px, 90vw);
  }

  body {
    padding-bottom: 78px;
  }
}

/* 모바일에서만 줄바꿈 표시, 데스크톱에서는 숨김 */
@media (min-width: 821px) {
  .br-mobile {
    display: none;
  }
}
