: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);
}

@font-face {
  font-family: "Paperlogy";
  src: url("font/Paperlogy-1Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

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

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

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

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

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Paperlogy", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}

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 {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: block;
}

.brand-logo {
  height: 92px;
  width: auto;
  object-fit: contain;
}

.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;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 25%;
  pointer-events: none;
  filter: brightness(1.25);
}

/* 비디오 재생 버튼(별표 등) 숨김 */
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-panel {
  display: none !important;
}
.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 28, 61, 0.62) 0%, rgba(10, 28, 61, 0.38) 45%, rgba(10, 28, 61, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.hero-copy {
  color: var(--white);
  text-align: center;
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  color: rgba(210, 225, 255, 0.9);
}

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-title {
  animation: heroTitleFloat 3.5s ease-in-out infinite;
}

.hero-title-accent {
  color: #7aabff;
}

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: 22px 0 16px;
  color: rgba(233, 239, 255, 0.95);
  font-size: clamp(16px, 1.35vw, 20px);
}

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

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 88px;
  min-height: 88px;
  box-sizing: border-box;
}

.hero-stat-title {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(233, 239, 255, 0.9);
}

.hero-stat-value {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  color: #7aabff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-stat-arrow {
  font-size: 1em;
  display: inline-block;
  transform: scale(1.95);
  transform-origin: left center;
  vertical-align: 0.15em;
  margin-left: 2px;
  line-height: 1;
}

.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-sub {
  margin: 12px 0 0;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
}

.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);
}

.unc-confidence-sub {
  margin: 16px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #1659CB;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

/* 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-image: url("images/h-4-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.unc-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 61, 0.65);
  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, opacity 0.4s ease;
  opacity: 0.88;
}

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

.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: #f4f6fa;
  color: #0a1c3d;
  padding: 0;
  padding-bottom: 80px;
}

/* 6섹션 히어로 배너 (배경 이미지 + 오버레이 텍스트) */
.unc-solutions-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.unc-solutions-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 28, 61, 0.5), rgba(10, 28, 61, 0.4)), url(images/h-6-banner.png) center / cover no-repeat;
  background-color: #0a3d5c;
}

.unc-solutions-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  padding: 8px 16px;
  background: #fff;
  color: #0a1c3d;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 4px;
}

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

.unc-solutions-hero-text {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* 6섹션 파란 바 (메인 타이틀) */
.unc-solutions-bar {
  background: #1659cb;
  color: #fff;
  padding: 28px 20px;
  text-align: center;
}

.unc-solutions-bar-title {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* 6섹션 3열 카드 */
.unc-solutions-cards-wrap {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.unc-solutions-cards-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.unc-solution-category-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(10, 28, 61, 0.08);
  border: 1px solid rgba(21, 58, 138, 0.1);
}

.unc-solution-category-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.unc-solution-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1659cb, #3a54f9);
  flex-shrink: 0;
}

.unc-solution-category-card h3 {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 800;
  color: #0a1c3d;
  text-align: left;
}

.unc-solution-check-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.unc-solution-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #0a1c3d;
}

.unc-solution-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231659cb'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.unc-solution-dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.unc-solution-dot-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 13px;
  color: #666;
}

.unc-solution-dot-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #999;
}

.br-mobile {
  display: block;
}

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

@media (max-width: 900px) {
  .unc-solutions-section {
    padding-bottom: 60px;
  }
  .unc-solutions-hero {
    min-height: 280px;
  }
  .unc-solutions-cards-grid {
    gap: 20px;
  }
  .unc-solution-category-card {
    padding: 22px 20px;
  }
}

@media (max-width: 600px) {
  .unc-solutions-section {
    padding-bottom: 40px;
  }
  .unc-solutions-hero {
    min-height: 220px;
  }
  .unc-solutions-hero-text {
    font-size: 20px;
    line-height: 1.4;
  }
  .unc-solutions-bar-title {
    font-size: 22px;
  }
  .unc-solutions-cards-grid {
    grid-template-columns: 1fr;
    margin-top: -16px;
    gap: 16px;
  }
  .unc-solution-category-card {
    padding: 20px 18px;
  }
  .unc-solution-category-card h3 {
    font-size: 18px;
  }
}

.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.5), rgba(0, 0, 0, 0.4)), url(images/h-7-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;
  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 {
  width: 100%;
  border: 1px solid rgba(10, 28, 61, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}

.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: 16px 18px 22px;
}

.drawer-close {
  justify-self: end;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.drawer-nav {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 36px;
  justify-items: center;
}

.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: flex-end;
  padding-bottom: 10px;
}

.drawer-logo {
  width: 272px;
  height: auto;
}

.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(360px, 78vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.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-cards-grid {
    grid-template-columns: 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;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: 72vh;
  }

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

  .hero-sub {
    font-size: 16px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 26px;
  }

  .hero-stat-card {
    padding: 16px;
  }

  .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-cards-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(300px, 80vw);
  }

  body {
    padding-bottom: 78px;
  }
}

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

/* 문의 완료 모달 (alert 대체) */
.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.consult-modal.consult-modal--open {
  opacity: 1;
  visibility: visible;
}

.consult-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.consult-modal-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.consult-modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--secondary), #2f63d8);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.consult-modal--error .consult-modal-icon {
  background: #dc2626;
}

.consult-modal-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.consult-modal-body {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.consult-modal-btn {
  padding: 12px 28px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.consult-modal-btn:hover {
  opacity: 0.95;
}
