/* ===================================
   콜트럭 리뉴얼 — 메인 스타일
   =================================== */

:root {
  --primary: #0a2463;
  --primary-dark: #061539;
  --accent: #ff6b35;
  --accent-hover: #e55a25;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #1e293b;
  --text-light: #64748b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 네비게이션 ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-img { height: 40px; width: auto; }
.logo-icon { font-size: 1.6rem; }
.logo-text { font-size: 1.3rem; letter-spacing: -0.5px; }
.logo-sub { font-size: .7rem; color: var(--text-light); font-weight: 400; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  padding: 8px 14px;
  border-radius: 6px;
}

.nav-menu > li > a:hover {
  color: var(--primary);
  background: var(--gray-50);
}

/* 드롭다운 서브메뉴 */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1001;
}

.has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: .85rem;
  color: var(--gray-600);
  transition: var(--transition);
}

.sub-menu li a:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-link-btn {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link-btn:hover {
  color: var(--primary);
  background: var(--gray-50);
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,107,53,.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== 히어로 슬라이드 ===== */
.hero {
  height: 64vmin;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #1a2a4a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 0 80px;
  margin-right: 0;
  margin-bottom: 6vmin;
}

.hero-badge {
  display: inline-block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid #3366cc;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 2px 2px 2px rgba(0,0,0,.7);
}

.hero-title b {
  font-weight: 900;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.8;
  font-style: italic;
  text-shadow: 2px 2px 2px rgba(0,0,0,.7);
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.sdot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
}

.sdot.active {
  background: #3a8fd6;
  border-color: #3a8fd6;
}

.hero-stats {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  background: var(--primary-dark);
  padding: 28px 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: -4px;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.2);
}

.hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  z-index: 10;
  display: none;
}

.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== 섹션 공통 ===== */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light .section-tag {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.section-tag {
  display: inline-block;
  background: rgba(10,36,99,.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== 퀵메뉴 (다운로드/가입) ===== */
.quickmenu { background: var(--gray-50); }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.quick-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.quick-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.quick-icon svg {
  stroke: var(--primary);
}

.quick-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.quick-card p {
  font-size: .85rem;
  color: var(--text-light);
}

/* ===== CEO 인사말 ===== */
.greeting {
  padding: 0;
}

.greeting-inner {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 120px 0;
  overflow: hidden;
}

.greeting-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,107,53,.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(255,255,255,.03) 0%, transparent 40%);
}

.greeting-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.greeting-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.greeting-content {
  position: relative;
}

.greeting-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
}

.greeting-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  line-height: 2;
  margin-bottom: 20px;
}

.greeting-sign {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sign-title {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
}

.sign-name {
  font-size: 1.2rem;
  color: var(--white);
}

.sign-name strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-left: 4px;
}

/* ===== 회사소개 ===== */
.about { background: var(--gray-50); }

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.about-icon { font-size: 3rem; margin-bottom: 20px; }

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== 특허&인증 ===== */
.cert { background: var(--white); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cert-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cert-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.cert-icon { font-size: 2.5rem; margin-bottom: 16px; }

.cert-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.cert-card p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== 회사연혁 ===== */
.history { background: var(--gray-50); }

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  min-width: 60px;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: .9rem;
  color: var(--text-light);
}

/* ===== 주요경영진 ===== */
.executives { background: var(--white); }

.exec-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.exec-card {
  text-align: center;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  min-width: 250px;
}

.exec-avatar {
  font-size: 4rem;
  margin-bottom: 16px;
}

.exec-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.exec-role {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.exec-card p {
  font-size: .9rem;
  color: var(--text-light);
}

/* ===== 경영비전 ===== */
.vision { background: var(--gray-50); }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vision-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.vision-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.vision-num {
  font-size: .85rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.vision-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.vision-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== 서비스 ===== */
.service {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,.1) 0%, transparent 70%);
  border-radius: 50%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.3);
}

.service-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}

.service-badge {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--white);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

.service-num {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.service-card.featured .service-num { color: rgba(255,255,255,.6); }

.service-icon { font-size: 2.5rem; margin-bottom: 16px; }

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.service-subtitle {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}

.service-card.featured .service-subtitle { color: rgba(255,255,255,.8); }

.service-list {
  margin-bottom: 20px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.service-card.featured .service-list li { color: rgba(255,255,255,.9); }
.service-card.featured .service-list li::before { color: var(--white); }
.service-card.featured .service-list li { border-color: rgba(255,255,255,.2); }

.service-doc {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-card.featured .service-doc {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
}

.service-btn {
  display: block;
  text-align: center;
  background: rgba(255,255,255,.15);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.2);
}

.service-btn:hover { background: rgba(255,255,255,.25); }
.service-card.featured .service-btn {
  background: var(--white);
  color: var(--accent);
}
.service-card.featured .service-btn:hover {
  background: var(--gray-100);
}

/* ===== 가입절차 ===== */
.process { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 60px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #1a4480 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(10,36,99,.3);
}

.step-num {
  font-size: .85rem;
  font-weight: 900;
  color: var(--white);
}

.step-connector {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gray-200) 100%);
}

.process-step:last-child .step-connector { display: none; }

.step-content { padding: 0 16px; }
.step-icon { font-size: 2.5rem; margin-bottom: 12px; }

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.step-content p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.process-cta {
  text-align: center;
}

.process-cta p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ===== 예치금조회 ===== */
.deposit { background: var(--white); }

.deposit-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 60px 40px;
}

.deposit-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.deposit-icon svg {
  stroke: var(--primary);
}

.deposit-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.deposit-box p {
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

/* ===== 전국화물요금 ===== */
.rate { background: var(--gray-50); }

.rate-notice {
  text-align: center;
  margin-bottom: 32px;
}

.rate-notice p {
  font-size: .9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 4px;
}

.rate-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.rate-table th,
.rate-table td {
  padding: 14px 20px;
  text-align: center;
  font-size: .9rem;
}

.rate-table thead {
  background: var(--primary);
  color: var(--white);
}

.rate-table th {
  font-weight: 700;
}

.rate-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.rate-table tbody tr:hover {
  background: var(--gray-50);
}

.rate-table tbody td:first-child {
  font-weight: 700;
  color: var(--primary);
}

.rate-ferry {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
}

.rate-ferry h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

.ferry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.ferry-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: .9rem;
  color: var(--text);
}

.ferry-item strong {
  color: var(--primary);
}

/* ===== 회원가입 폼 ===== */
.member-form {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.signup-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-section {
  margin-bottom: 40px;
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.form-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tc, var(--primary));
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--tc, var(--primary));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row:last-child { margin-bottom: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--text);
  font-family: 'Noto Sans KR', sans-serif;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,36,99,.1);
}

.form-group input[type="file"] {
  padding: 10px;
  cursor: pointer;
}

.file-help {
  font-size: .8rem;
  color: var(--text-light);
}

.form-agree {
  margin: 24px 0;
  text-align: center;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px; height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans KR', sans-serif;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,53,.5);
}

.full-btn { width: 100%; }

/* ===== 게시판 ===== */
.board { background: var(--gray-50); }

.board-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 0;
}

.tab {
  padding: 12px 24px;
  background: none;
  border: none;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  font-family: 'Noto Sans KR', sans-serif;
}

.tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.board-list {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.board-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.board-item:last-child { border-bottom: none; }
.board-item:hover { background: var(--gray-50); }

.board-badge {
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--gray-100);
  color: var(--text-light);
}

.board-item.notice-item .board-badge {
  background: #eff6ff;
  color: var(--primary);
}

.board-badge.new {
  background: #fff1f0;
  color: var(--accent);
}

.board-title {
  flex: 1;
  font-size: .93rem;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.board-title:hover { color: var(--primary); }

.board-date {
  flex-shrink: 0;
  font-size: .82rem;
  color: var(--text-light);
}

.board-more {
  text-align: center;
  margin-top: 32px;
}

.btn-outline-dark {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== 로그인 ===== */
.login-section {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.login-box {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.login-box h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.login-box > p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.login-form .form-group {
  text-align: left;
}

.login-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--text-light);
}

.login-links a {
  color: var(--text-light);
  transition: var(--transition);
}

.login-links a:hover {
  color: var(--primary);
}

/* ===== 회원가입 유형선택 ===== */
.signup-section {
  background: var(--gray-50);
}

.signup-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.signup-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 16px 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.signup-type-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.signup-type-card.featured {
  border-color: var(--accent);
  box-shadow: 0 4px 30px rgba(255,107,53,.15);
}

.type-badge {
  position: absolute;
  top: -12px;
  background: var(--accent);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
}

.type-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.signup-type-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.signup-type-card p {
  display: none;
}

.type-doc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: .85rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: auto;
  line-height: 1.6;
  width: 100%;
  height: 150px;
}

.type-doc strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed;
  border-color: inherit;
}

.type-btn {
  display: block;
  width: calc(100% + 32px);
  margin: 16px -16px 0;
  padding: 16px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  letter-spacing: .5px;
}

/* ===== 5유형 개별 테마색상 ===== */
.color-a { --tc: #0a2463; --tc-light: #eff6ff; --tc-border: #bfdbfe; --tc-soft: #3b5ca0; }
.color-b { --tc: #b45309; --tc-light: #fffbeb; --tc-border: #fde68a; --tc-soft: #d97706; }
.color-c { --tc: #047857; --tc-light: #ecfdf5; --tc-border: #a7f3d0; --tc-soft: #059669; }
.color-d { --tc: #7c3aed; --tc-light: #f5f3ff; --tc-border: #c4b5fd; --tc-soft: #8b5cf6; }
.color-e { --tc: #be123c; --tc-light: #fff1f2; --tc-border: #fda4af; --tc-soft: #e11d48; }

.signup-type-card h3 { color: var(--tc); }
.type-icon svg { stroke: var(--tc); }
.type-doc { color: var(--tc); background: var(--tc-light); border: 1px solid var(--tc-border); }
.type-btn { background: var(--tc); }
.signup-type-card:hover { border-color: var(--tc); }
.signup-type-card:hover .type-btn { filter: brightness(1.15); }

.signup-alt {
  text-align: center;
}

.signup-alt p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ===== 찾아오시는길 ===== */
.location {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.location-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.loc-item strong {
  display: block;
  font-size: .9rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.loc-item p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
}

.loc-item a {
  color: var(--accent);
  font-weight: 600;
}

.loc-item a:hover {
  text-decoration: underline;
}

.location-map {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
}

.map-placeholder span { font-size: 4rem; display: block; margin-bottom: 16px; }
.map-placeholder p { font-size: .9rem; color: var(--text-light); }

/* ===== 푸터 ===== */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,53,.15);
  border: 1px solid rgba(255,107,53,.3);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a,
.footer-col li {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding: 28px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 8px;
  line-height: 1.8;
}

.footer-copy { margin-top: 16px !important; color: rgba(255,255,255,.25) !important; }

/* ===== 플로팅 버튼 ===== */
.floating-btn {
  position: fixed;
  bottom: 80px; right: 24px;
  background: var(--accent);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255,107,53,.4);
  font-size: .75rem;
  font-weight: 700;
  z-index: 100;
  transition: var(--transition);
}

.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,107,53,.5);
}

.floating-btn svg { width: 24px; height: 24px; stroke: var(--white); }

.top-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 100;
  opacity: 0;
  transition: var(--transition);
}

.top-btn.visible { opacity: 1; }
.top-btn:hover { background: var(--accent); transform: translateY(-2px); }

/* ===== 회사개요 ===== */
.about-img {
  text-align: center;
  margin-bottom: 40px;
}

.about-img img {
  max-width: 400px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.company-table-wrap {
  overflow-x: auto;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.company-table th,
.company-table td {
  padding: 16px 20px;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}

.company-table th {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--primary);
  width: 140px;
  white-space: nowrap;
}

.company-table td {
  color: var(--text);
  line-height: 1.7;
}

/* ===== 경영진 테이블 ===== */
.exec-table-wrap {
  overflow-x: auto;
}

.exec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.exec-table th,
.exec-table td {
  padding: 16px 20px;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  vertical-align: top;
}

.exec-table thead {
  background: var(--primary);
  color: var(--white);
}

.exec-table th { font-weight: 700; }

.exec-table .td-left {
  text-align: left;
  line-height: 1.8;
}

/* ===== 요금표 탭 ===== */
.rate-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.rate-tab {
  flex: 1;
  padding: 14px 8px;
  border: none;
  border-right: 1px solid var(--gray-200);
  background: var(--white);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans KR', sans-serif;
}

.rate-tab:last-child { border-right: none; }

.rate-tab.active {
  background: var(--primary);
  color: var(--white);
}

.rate-tab:hover:not(.active) {
  background: var(--gray-50);
  color: var(--primary);
}

.rate-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  padding-left: 4px;
}

.rate-region-header {
  margin-bottom: 24px;
}

.rate-region-header h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
}

.rate-section-title {
  background: #f8f1e8;
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--text);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin-top: 32px;
  margin-bottom: 0;
}

.rate-section-title + .rate-table-wrap {
  margin-top: 0;
}

.rate-section-title + .rate-table-wrap .rate-table {
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.rate-empty {
  text-align: center !important;
  padding: 24px 20px !important;
  color: var(--text-light) !important;
  font-weight: 400 !important;
  font-size: .95rem !important;
}

/* ===== 게시판 2단 레이아웃 (AS-IS 스타일) ===== */
.board-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.board-col-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.board-col-header h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
}

.board-more-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
}

.board-more-link:hover { color: var(--primary); }

/* ===== Contact (연락처) ===== */
.contact {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-icon svg {
  stroke: rgba(255,255,255,.8);
}

.contact-card h3 {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-phone {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
}

.contact-phone:hover { color: #ff8255; }

.contact-info {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

a.contact-info:hover { color: var(--accent); }

.contact-card p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ===== 폼 추가 요소 ===== */
.req { color: red; font-weight: 700; }

.btn-check {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans KR', sans-serif;
}

.btn-check:hover { background: #1a4480; }

.input-inline {
  display: flex;
  gap: 8px;
}

.input-inline select,
.input-inline input {
  flex: 1;
  min-width: 0;
}

.agree-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.agree-item:last-child { border-bottom: none; }

.agree-radio {
  margin-top: 8px;
  display: flex;
  gap: 20px;
}

.agree-radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.form-note {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.form-agree {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-left: 8px;
}

/* 주소 검색 필드 */
.addr-row {
  display: flex !important;
  gap: 10px !important;
  align-items: flex-end;
}

.addr-readonly {
  background: var(--gray-100) !important;
  cursor: default;
}

/* ===== 첨부서류 카드 UI ===== */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.doc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 20px 10px 14px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.doc-card:hover {
  border-color: var(--primary);
  background: var(--gray-50);
}

.doc-card.uploaded {
  border-style: solid;
  border-color: #4caf50;
  background: #f0fdf4;
}

.doc-card-preview {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.doc-card:hover .doc-card-preview {
  background: var(--gray-100);
}

.doc-card.uploaded .doc-card-preview {
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.doc-card-preview svg {
  stroke: var(--gray-400);
}

.doc-card:hover .doc-card-preview svg {
  stroke: var(--primary);
}

.doc-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.doc-card-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}

.doc-card-status {
  font-size: .75rem;
  color: var(--gray-400);
}

.doc-card.uploaded .doc-card-status {
  color: #2e7d32;
  font-weight: 600;
}

.doc-fax {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

/* 이미지 팝업 */
.doc-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 40px;
}

.doc-popup-overlay img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}

/* 주소 검색 레이어 (모달 내부) */
.addr-layer-wrap {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(0,0,0,.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.addr-layer {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 500px;
  height: 460px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.addr-layer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

.addr-layer-header strong {
  font-size: 1.1rem;
  color: var(--primary);
}

.addr-layer-content {
  flex: 1;
  min-height: 0;
}

/* ===== 회원가입 위자드 모달 ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  overflow: hidden;
}

.modal-overlay.open {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  width: calc(100% - 40px);
  max-width: 720px;
  height: 80vh;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: modalIn .3s ease;
  overflow: hidden;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: var(--tc, var(--primary));
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: var(--transition);
}

.modal-close:hover { color: var(--white); }

/* 위자드 프로그레스 */
.wizard-progress {
  display: flex;
  padding: 20px 32px;
  gap: 8px;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.wiz-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: var(--transition);
}

.wiz-step.active {
  background: var(--tc, var(--primary));
}

.wiz-step.done {
  background: #e8f5e9;
}

.wiz-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.wiz-step.active .wiz-num {
  background: var(--white);
  color: var(--primary);
}

.wiz-step.done .wiz-num {
  background: #4caf50;
  color: var(--white);
}

.wiz-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light);
}

.wiz-step.active .wiz-label { color: var(--white); }
.wiz-step.done .wiz-label { color: #2e7d32; }

/* 위자드 폼 (flex 레이아웃) */
#wizardForm {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* 위자드 본문 */
.wizard-body {
  padding: 28px 32px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.wizard-body .form-section {
  margin-bottom: 24px;
}

.wizard-body .form-section:last-child {
  margin-bottom: 0;
}

/* 위자드 푸터 */
.wizard-footer {
  display: flex;
  justify-content: space-between;
  padding: 20px 32px;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
  gap: 12px;
}

.wiz-btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans KR', sans-serif;
  border: none;
}

.wiz-prev {
  background: var(--gray-100);
  color: var(--text-light);
}

.wiz-prev:hover { background: var(--gray-200); }

.wiz-next {
  background: var(--tc-soft, var(--primary));
  color: var(--white);
  margin-left: auto;
}

.wiz-next:hover { filter: brightness(1.15); }

.wiz-submit {
  background: var(--tc-soft, var(--accent));
  color: var(--white);
  margin-left: auto;
}

.wiz-submit:hover {
  filter: brightness(1.15);
}

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step-connector { display: none; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: 1fr; }
  .greeting-wrap { grid-template-columns: 1fr; gap: 40px; }
  .signup-types { grid-template-columns: repeat(3, 1fr); }
  .signup-type-card { padding: 28px 20px; }
  .location-info { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { padding: 20px 32px; gap: 24px; }
  .hero { height: 50vmin; min-height: 350px; }
  .board-dual { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card.main-phone { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-right { display: none; }
  .nav-menu.open ~ .nav-right { display: none; }
  .hamburger { display: flex; }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }

  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { width: 50px; height: 1px; }

  .hero-container { padding: 0 24px; }
  .hero { min-height: 300px; height: 70vmin; }

  .about-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card.main-phone { grid-column: auto; }
  .board-dual { grid-template-columns: 1fr; }
  .company-table th { width: 100px; }
  .exec-table { font-size: .8rem; }
  .signup-types { grid-template-columns: repeat(2, 1fr); }
  .modal-overlay { padding: 0; }
  .modal-content { max-width: 100%; height: 100vh; border-radius: 0; }
  .modal-header { padding: 16px 20px; }
  .wizard-progress { padding: 12px 20px; }
  .wizard-body { padding: 20px; }
  .wizard-footer { padding: 16px 20px; }
  .wiz-label { display: none; }
}
