/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gow-blue:   #10069F;
  --gow-blue2:  #0D0585;
  --gow-light:  #E8E7F8;
  --gow-accent: #4A42D0;
  /* 세컨드 컬러: Gow Cyan */
  --gow-cyan:       #00C2D9;
  --gow-cyan-dark:  #0099AE;
  --gow-cyan-light: #E0F8FC;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-400:   #9CA3AF;
  --gray-600:   #4B5563;
  --gray-800:   #1F2937;
  --gray-900:   #111827;
  --white:      #FFFFFF;
  --font-sans:  'Noto Sans KR', sans-serif;
  --font-serif: 'Noto Serif KR', serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ─── GNB ───────────────────────────────────────── */
.gnb {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s;
}
.gnb.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.gnb-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: stretch;
  height: 72px; padding: 0 32px;
}
.gnb-logo {
  display: flex; align-items: center; margin-right: 48px; flex-shrink: 0;
}
.gnb-logo .logo-mark {
  width: 36px; height: 36px; background: var(--gow-blue);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-right: 10px;
}
.gnb-logo .logo-mark span {
  color: #fff; font-weight: 700; font-size: 16px; letter-spacing: -0.5px;
}
.gnb-logo .logo-text { font-size: 18px; font-weight: 700; color: var(--gray-900); letter-spacing: -0.3px; }
.gnb-logo .logo-text em { color: var(--gow-blue); font-style: normal; }

.gnb-nav { display: flex; align-items: stretch; flex: 1; }
.gnb-item { position: relative; display: flex; align-items: center; }
.gnb-item > a {
  display: flex; align-items: center; height: 100%;
  padding: 0 18px; font-size: 14px; font-weight: 600;
  color: var(--gray-700, #374151); letter-spacing: 0.2px;
  transition: color .2s; white-space: nowrap;
}
.gnb-item > a:hover, .gnb-item:hover > a { color: var(--gow-blue); }
.gnb-item > a::after {
  content: ''; position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 2px; background: var(--gow-blue);
  transform: scaleX(0); transition: transform .2s;
}
.gnb-item:hover > a::after { transform: scaleX(1); }

/* Dropdown */
.gnb-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 180px; background: #fff;
  border: 1px solid var(--gray-200); border-top: 2px solid var(--gow-blue);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  padding: 8px 0;
}
.gnb-item:hover .gnb-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.gnb-dropdown a {
  display: block; padding: 10px 20px; font-size: 13px; font-weight: 500;
  color: var(--gray-600); transition: color .15s, background .15s;
}
.gnb-dropdown a:hover { color: var(--gow-blue); background: var(--gow-light); }

.gnb-right { display: flex; align-items: center; margin-left: auto; gap: 12px; }
.btn-contact {
  padding: 9px 22px; background: var(--gow-blue); color: #fff;
  border-radius: 6px; font-size: 13px; font-weight: 600;
  transition: background .2s, transform .15s;
}
.btn-contact:hover { background: var(--gow-blue2); transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  background: #070510;
  display: flex; align-items: center; overflow: hidden;
}
/* 배경 이미지 — 채도·명도 낮춰서 파란 느낌 줄임 */
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('../images/pexels-pixabay-373543.jpg');
  background-size: cover; background-position: center;
  opacity: .55;
  filter: saturate(.6) brightness(.85);
}
/* 오버레이 */
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 85% 15%, rgba(0,194,217,.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(16,6,159,.45) 0%, transparent 65%),
    linear-gradient(160deg, rgba(4,2,30,.82) 0%, rgba(10,5,60,.68) 55%, rgba(4,2,30,.78) 100%);
}
/* 하단 페이드아웃 */
.hero-bg-overlay::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(4,2,30,.6) 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0; opacity: .035;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── 플로팅 카드 ── */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px; padding: 16px 20px;
  min-width: 160px;
}
.hero-float-card .card-label { font-size: 11px; color: rgba(255,255,255,.65); margin-bottom: 5px; font-weight: 500; }
.hero-float-card .card-value { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; }
.hero-float-card .card-unit  { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 5px; line-height: 1.5; }

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

/* 카드 5개 개별 위치 — 원 주변 분산 배치 */
.hero-cards .hero-float-card:nth-child(4) { top: 10px;   left: 15px;  animation: float 4.0s ease-in-out infinite 0s;   }
.hero-cards .hero-float-card:nth-child(5) { top: 150px;  right: 0px;  animation: float 4.8s ease-in-out infinite 1.2s; }
.hero-cards .hero-float-card:nth-child(6) { bottom: 30px; left: 30px; animation: float 4.4s ease-in-out infinite 0.6s; }
.hero-cards .hero-float-card:nth-child(7) { top: 280px;  right: 0px;  animation: float 4.6s ease-in-out infinite 1.8s; }
.hero-cards .hero-float-card:nth-child(8) { top: 210px;  left: 15px;  animation: float 5.0s ease-in-out infinite 2.4s; }

/* 히어로 콘텐츠 */
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 120px 40px 80px;
  display: flex; align-items: center;
  justify-content: center; gap: 72px;
}
.hero-text { flex: 0 0 auto; max-width: 500px; }

/* 카드 영역 */
.hero-cards {
  position: relative; flex: 0 0 380px; height: 500px;
}
/* 배경 글로우 */
.hero-deco {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,66,208,.55) 0%, rgba(16,6,159,0) 70%);
  pointer-events: none;
}
/* 큰 원 */
.hero-deco2 {
  display: block;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  pointer-events: none;
}
/* 작은 원 */
.hero-deco3 {
  display: block;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,194,217,.15); border: 1px solid rgba(0,194,217,.4);
  border-radius: 100px; padding: 6px 14px; margin-bottom: 28px;
  font-size: 12px; color: rgba(255,255,255,.95); font-weight: 500;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gow-cyan); display: inline-block;
  box-shadow: 0 0 8px var(--gow-cyan);
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700; line-height: 1.15;
  color: #fff; letter-spacing: -1px; margin-bottom: 24px;
  max-width: 620px;
}
.hero-h1 em { color: #A5B4FC; font-style: normal; }
.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px); line-height: 1.75;
  color: rgba(255,255,255,.75); max-width: 500px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--gow-blue);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: 1.5px; font-weight: 500;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll .arrow { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── 공통 섹션 ───────────────────────────────────── */
section { padding: 96px 32px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-badge {
  display: inline-block; background: var(--gow-light); color: var(--gow-blue);
  border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(28px, 3vw, 42px);
  font-weight: 700; color: var(--gray-900); line-height: 1.3;
  letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--gray-600); line-height: 1.7; max-width: 560px;
}

/* ─── SECTION 2: 신뢰 지표 ───────────────────────── */
.stats-section {
  padding: 0; background: var(--gray-900); overflow: hidden;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 52px 40px; border-right: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.03); }
.stat-num {
  font-family: var(--font-serif); font-size: 52px; font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 8px;
}
.stat-num span { font-size: 28px; color: var(--gow-cyan); margin-left: 2px; }
.stat-item:nth-child(even) .stat-num { color: var(--gow-cyan); }
.stat-label { font-size: 14px; color: rgba(255,255,255,.55); font-weight: 400; }
.stat-label strong { display: block; font-size: 15px; color: rgba(255,255,255,.85); font-weight: 600; margin-bottom: 4px; }

/* ─── SECTION 3: 서비스 4대 축 ──────────────────── */
.services-section { background: var(--white); }
.services-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 56px; gap: 40px; flex-wrap: wrap;
}
.services-header .section-sub {
  max-width: 400px; font-size: 17px; line-height: 1.8;
  color: var(--gray-600); border-left: 3px solid var(--gow-cyan);
  padding-left: 20px;
}
.service-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card {
  border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gow-blue) 0%, var(--gow-accent) 100%);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(16,6,159,.12); border-color: var(--gow-blue); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .sc-num,
.service-card:hover .sc-title,
.service-card:hover .sc-desc,
.service-card:hover .sc-tags span,
.service-card:hover .sc-link { color: rgba(255,255,255,.9); }
.service-card:hover .sc-tags span { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }
.service-card:hover .sc-icon { background: rgba(255,255,255,.15); }
.service-card > * { position: relative; z-index: 1; }

.sc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gow-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px; transition: background .3s;
}
.service-card:nth-child(even) .sc-icon { background: var(--gow-cyan-light); }
.service-card:nth-child(even) .sc-icon svg { stroke: var(--gow-cyan-dark); }
.service-card:nth-child(even) .sc-tags span { color: var(--gow-cyan-dark); background: var(--gow-cyan-light); border-color: var(--gow-cyan-light); }
.service-card:nth-child(even) .sc-link { color: var(--gow-cyan-dark); }
.service-card:nth-child(even):hover { border-color: var(--gow-cyan); box-shadow: 0 20px 40px rgba(0,194,217,.15); }
.service-card:nth-child(even)::before { background: linear-gradient(135deg, var(--gow-cyan-dark) 0%, var(--gow-cyan) 100%); }
.sc-icon svg { width: 26px; height: 26px; }
.sc-num { font-size: 11px; color: var(--gray-400); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; transition: color .3s; }
.sc-title { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; line-height: 1.3; transition: color .3s; }
.sc-desc { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; transition: color .3s; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.sc-tags span {
  font-size: 11px; font-weight: 600; color: var(--gow-blue);
  border: 1px solid var(--gow-light); background: var(--gow-light);
  border-radius: 100px; padding: 3px 10px; transition: all .3s;
}
.sc-link { font-size: 13px; font-weight: 600; color: var(--gow-blue); display: flex; align-items: center; gap: 5px; transition: color .3s; }

/* ─── SECTION 4: DX 흐름도 ───────────────────────── */
.dx-section { background: var(--gray-50); }
.dx-header { text-align: center; margin-bottom: 64px; }
.dx-header .section-sub { margin: 0 auto; }
.dx-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap; overflow-x: auto; padding: 8px 0;
}
.dx-step {
  display: flex; flex-direction: column; align-items: center; min-width: 140px;
  background: #fff; border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 28px 20px; text-align: center; position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.dx-step:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(16,6,159,.1); border-color: var(--gow-blue); }
.dx-step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gow-light); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
}
.dx-step-icon svg { width: 24px; height: 24px; }
.dx-step-label { font-size: 13px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.dx-step-sub { font-size: 11px; color: var(--gray-400); line-height: 1.5; }
.dx-arrow {
  display: flex; align-items: center; padding: 0 8px;
  color: var(--gow-cyan); flex-shrink: 0;
}
.dx-arrow svg { width: 28px; height: 28px; }
/* DX 스텝 카드 개별 컬러 */
.dx-step:nth-child(1)  .dx-step-icon { background: var(--gow-light);       } .dx-step:nth-child(1)  .dx-step-icon svg { stroke: var(--gow-blue);     }
.dx-step:nth-child(3)  .dx-step-icon { background: #EDE9FE;                } .dx-step:nth-child(3)  .dx-step-icon svg { stroke: #7C3AED;            }
.dx-step:nth-child(5)  .dx-step-icon { background: var(--gow-cyan-light);  } .dx-step:nth-child(5)  .dx-step-icon svg { stroke: var(--gow-cyan-dark);}
.dx-step:nth-child(7)  .dx-step-icon { background: #E0F2FE;                } .dx-step:nth-child(7)  .dx-step-icon svg { stroke: #0369A1;            }
.dx-step:nth-child(9)  .dx-step-icon { background: #D1FAE5;                } .dx-step:nth-child(9)  .dx-step-icon svg { stroke: #059669;            }
.dx-step:nth-child(11) .dx-step-icon { background: #FEF3C7;                } .dx-step:nth-child(11) .dx-step-icon svg { stroke: #D97706;            }
.dx-step:nth-child(1):hover  { border-color: var(--gow-blue);     box-shadow: 0 12px 30px rgba(16,6,159,.12);  }
.dx-step:nth-child(3):hover  { border-color: #7C3AED;             box-shadow: 0 12px 30px rgba(124,58,237,.12);}
.dx-step:nth-child(5):hover  { border-color: var(--gow-cyan);     box-shadow: 0 12px 30px rgba(0,194,217,.12); }
.dx-step:nth-child(7):hover  { border-color: #0369A1;             box-shadow: 0 12px 30px rgba(3,105,161,.12); }
.dx-step:nth-child(9):hover  { border-color: #059669;             box-shadow: 0 12px 30px rgba(5,150,105,.12); }
.dx-step:nth-child(11):hover { border-color: #D97706;             box-shadow: 0 12px 30px rgba(217,119,6,.12); }
.dx-note { text-align: center; margin-top: 48px; }
.dx-note p {
  font-size: 18px; line-height: 1.7; font-weight: 600;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--gow-blue) 0%, #7C3AED 45%, var(--gow-cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dx-note strong { font-weight: 800; }

/* ─── SECTION 5: 고객사례 ────────────────────────── */
.cases-section { background: var(--white); }
.cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.cases-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 7px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--gray-200); color: var(--gray-600); cursor: pointer;
  transition: all .2s; background: transparent;
}
.filter-btn.active, .filter-btn:hover { background: var(--gow-cyan-dark); color: #fff; border-color: var(--gow-cyan-dark); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.case-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: rgba(255,255,255,.85);
  letter-spacing: -0.5px;
}
.case-card-img.c1 { background: linear-gradient(135deg, #1a0070 0%, #10069F 100%); }
.case-card-img.c2 { background: linear-gradient(135deg, #006e7e 0%, var(--gow-cyan-dark) 100%); }
.case-card-img.c3 { background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%); }
.case-card-body { padding: 24px; }
.case-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--gow-blue); background: var(--gow-light);
  border-radius: 100px; padding: 3px 10px; margin-bottom: 12px;
}
.case-company { font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.case-solution { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.case-result { font-size: 13px; font-weight: 600; color: var(--gow-blue); display: flex; align-items: center; gap: 6px; }

/* ─── SECTION 6: 파트너·인증 ─────────────────────── */
.partners-section { background: var(--gray-50); padding: 64px 32px; }
.partners-inner { max-width: 1280px; margin: 0 auto; }
.partners-title { text-align: center; font-size: 15px; font-weight: 600; color: var(--gray-600); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 40px; }
.partners-logos {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.partner-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px 40px; border-right: 1px solid var(--gray-200);
  gap: 10px; transition: background .2s;
}
.partner-item:last-child { border-right: none; }
.partner-item:hover { background: #fff; }
.partner-logo-box {
  width: 140px; height: 56px; border-radius: 8px;
  background: transparent; display: flex; align-items: center;
  justify-content: center; padding: 8px 12px;
  transition: background .2s;
}
.partner-item:hover .partner-logo-box { background: #fff; }
.partner-logo-box img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: grayscale(100%); opacity: .6; transition: filter .2s, opacity .2s;
}
.partner-item:hover .partner-logo-box img { filter: grayscale(0%); opacity: 1; }
.partner-logo-box span { font-size: 15px; font-weight: 700; color: var(--gray-600); }
.partner-badge {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gow-cyan-dark) 0%, var(--gow-cyan) 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  box-shadow: 0 4px 16px rgba(16,6,159,.25);
}
.partner-badge span { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.9); line-height: 1.4; }
.partner-badge strong { font-size: 14px; color: #fff; }
.partner-label { font-size: 14px; color: var(--gray-600); font-weight: 500; text-align: center; line-height: 1.7; }

/* ─── SECTION 7: CTA ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #05014A 0%, #10069F 100%);
  padding: 96px 32px; text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-label { font-size: 13px; font-weight: 600; color: #A5B4FC; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.cta-title { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: #fff; margin-bottom: 20px; line-height: 1.3; }
.cta-sub { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--gow-blue);
  padding: 16px 36px; border-radius: 8px;
  font-size: 16px; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gow-cyan);
  border: 1.5px solid var(--gow-cyan);
  padding: 16px 36px; border-radius: 8px;
  font-size: 16px; font-weight: 600;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-cta-secondary:hover { background: var(--gow-cyan); color: #fff; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--gray-900); color: rgba(255,255,255,.6);
  padding: 60px 32px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo .logo-mark {
  width: 40px; height: 40px; background: var(--gow-blue);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.footer-logo .logo-mark span { color: #fff; font-weight: 700; font-size: 18px; }
.footer-logo p { font-size: 13px; line-height: 1.8; margin-top: 12px; }
.footer-logo address { font-style: normal; font-size: 12.5px; margin-top: 16px; line-height: 1.9; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12.5px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.9); }

/* ─── Scroll Progress ────────────────────────────── */
.progress-bar {
  position: fixed; top: 72px; left: 0; height: 3px;
  background: var(--gow-blue); z-index: 999;
  transition: width .1s;
}

/* ─── MOCKUP 라벨 ─────────────────────────────────── */
.mockup-banner {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  background: var(--gow-blue); color: #fff;
  padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(16,6,159,.4);
}

/* ─── 서브페이지 공통 ────────────────────────────── */
.page-header {
  padding: 140px 32px 80px;
  background: linear-gradient(160deg, #05014A 0%, #10069F 60%, #0D85A0 100%);
  text-align: center;
}
.page-header .section-badge { background: rgba(255,255,255,.15); color: #fff; }
.page-header .section-title { color: #fff; margin-bottom: 12px; }
.page-header .section-sub { color: rgba(255,255,255,.75); margin: 0 auto; }
.page-body { padding: 80px 32px; }
.page-body .container { max-width: 900px; }
.wip-box {
  text-align: center; padding: 80px 40px;
  border: 2px dashed var(--gray-200); border-radius: 20px;
  color: var(--gray-400);
}
.wip-box p { font-size: 15px; margin-top: 12px; }

/* ─── 반응형 ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-cards { display: none; }
  .hero-content { justify-content: center; padding: 120px 48px 80px; }
  .hero-text { max-width: 600px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dx-flow { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .dx-arrow { display: none; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .gnb-inner { padding: 0 20px; }
  .gnb-nav { display: none; }
  .hero-content { padding: 100px 24px 64px; }
  .hero-h1 { font-size: 40px; }
  .service-cards { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .partners-logos { flex-direction: column; align-items: flex-start; }
  .partner-item { border-right: none; border-bottom: 1px solid var(--gray-200); width: 100%; }
  .services-header { flex-direction: column; }
  .services-header .section-sub { border-left: none; border-top: 3px solid var(--gow-cyan); padding-left: 0; padding-top: 16px; }
  .cases-header { flex-direction: column; align-items: flex-start; }
  .dx-step { min-width: 120px; }
  .dx-note p { white-space: normal; font-size: 16px; }
  .page-header { padding: 120px 20px 60px; }
  .page-body { padding: 48px 20px; }
}
