/* ============================================================
   한울 컨설팅 그룹 — Hermès-Inspired Design System
   장애인표준사업장 · 장애인연계고용 전문 컨설팅
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;400;600;700&family=Noto+Sans+KR:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --orange:        #D4541A;
  --orange-hover:  #E06020;
  --cream:         #F8F4EE;
  --dark:          #1C1C1C;
  --gold:          #B8966E;
  --white:         #FFFFFF;
  --gray:          #8A8A8A;
  --border:        #E0D8CE;
  --section-pad:   110px 0;
}

*  { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Noto Serif KR', serif;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-line {
  width: 36px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 24px;
}

.section-line.center { margin: 0 auto 24px; }

.section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.95;
  max-width: 620px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.section { padding: var(--section-pad); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.nav-logo { display: flex; flex-direction: column; }

.nav-logo-en {
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 17px;
  color: var(--orange);
  letter-spacing: 0.12em;
  font-weight: 600;
}

.nav-logo-kr {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-menu a:hover           { color: var(--orange); }
.nav-menu a:hover::after    { width: 100%; }
.nav-menu a.active          { color: var(--orange); }
.nav-menu a.active::after   { width: 100%; }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.25s;
}

.nav-cta:hover { background: var(--orange-hover) !important; }
.nav-cta::after { display: none !important; }

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

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  display: block;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding-top: 74px;
  position: relative;
  overflow: hidden;
}

.hero-deco {
  position: absolute;
  right: 0; top: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(145deg, rgba(212,84,26,0.04) 0%, rgba(212,84,26,0.12) 100%);
}

.hero-frame {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 65%;
  border: 1px solid rgba(212,84,26,0.18);
  pointer-events: none;
}

.hero-frame::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(212,84,26,0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  padding: 9px 18px;
  border: 1px solid rgba(212,84,26,0.28);
}

.hero-badge::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--orange);
}

.hero-title {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 30px;
  color: var(--dark);
}

.hero-title em {
  font-style: normal;
  color: var(--orange);
}

.hero-desc {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 48px;
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 15px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 2px solid var(--orange);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--orange);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  padding: 15px 36px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 2px solid var(--dark);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
}

.hero-partners {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-partners-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.hero-partner-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-partner-tag {
  font-size: 12px;
  color: var(--gray);
  padding: 4px 12px;
  border: 1px solid var(--border);
  background: var(--white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollHint 2.2s infinite;
}

.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gray), transparent);
}

@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 44px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,255,255,0.03); }

.stat-num {
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 44px;
  color: var(--orange);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

/* ===== SERVICES ===== */
.services-section { padding: 120px 0; }

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

.services-header .section-desc { margin: 0 auto; }

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

.service-card {
  background: var(--cream);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.07);
  transform: translateY(-5px);
}

.service-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 52px;
  color: rgba(212,84,26,0.1);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 600;
}

.svc-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.svc-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.svc-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 28px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.svc-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(212,84,26,0.1);
  color: var(--orange);
  letter-spacing: 0.04em;
}

.svc-link {
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.svc-link:hover { gap: 16px; }

/* ===== ABOUT ===== */
.about-section {
  background: var(--cream);
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 480px;
}

.ab-box-1 {
  position: absolute;
  top: 0; left: 0;
  width: 73%;
  height: 72%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 32px;
}

.ab-big-num {
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
}

.ab-big-text {
  font-size: 15px;
  opacity: 0.88;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

.ab-box-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%;
  height: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.ab-box-2-text {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  text-align: center;
}

.ab-box-2-text strong {
  color: var(--orange);
  display: block;
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 22px;
  margin-bottom: 6px;
}

.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.ab-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ab-feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(212,84,26,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ab-feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ab-feature-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-section { padding: 120px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}

.why-item {
  background: var(--white);
  padding: 48px;
  transition: background 0.3s;
}

.why-item:hover { background: var(--cream); }

.why-ord {
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 38px;
  color: var(--orange);
  margin-bottom: 18px;
  font-weight: 600;
  line-height: 1;
}

.why-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.85;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--orange);
  padding: 100px 0;
  text-align: center;
}

.cta-band .section-sub  { color: rgba(255,255,255,0.65); }
.cta-band .section-title { color: var(--white); }
.cta-band .section-desc  { color: rgba(255,255,255,0.8); margin: 0 auto 40px; }
.cta-band .section-line  { background: rgba(255,255,255,0.35); }
.cta-band .section-line.center { margin: 0 auto 24px; }

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 2px solid var(--white);
  transition: all 0.3s;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-white-out {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 15px 40px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 2px solid rgba(255,255,255,0.45);
  transition: all 0.3s;
}

.btn-white-out:hover { border-color: var(--white); }

/* ===== KEYWORDS SEO SECTION ===== */
.keywords-section {
  background: var(--cream);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.kw-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.kw-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-transform: uppercase;
  white-space: nowrap;
  padding-top: 8px;
}

.kw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kw-tag {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 7px 16px;
  font-size: 13px;
  color: var(--dark);
  transition: all 0.25s;
  cursor: default;
}

.kw-tag:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}

.ft-logo-en {
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 20px;
  color: var(--orange);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.ft-logo-kr {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.ft-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin-bottom: 24px;
}

.ft-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.ft-col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  font-weight: 500;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s;
}

.ft-links a:hover { color: var(--orange); }

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

.ft-bottom-right {
  display: flex;
  gap: 16px;
}

.ft-bottom-right a {
  color: rgba(255,255,255,0.28);
  transition: color 0.25s;
}

.ft-bottom-right a:hover { color: var(--orange); }

/* ===== PAGE HERO (서브페이지) ===== */
.page-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(212,84,26,0.12) 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: rgba(255,255,255,0.35);
  transition: color 0.25s;
}

.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.15); }

.page-hero-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(30px, 4vw, 50px);
  color: var(--white);
  font-weight: 600;
  line-height: 1.28;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

/* ===== INFO CARDS ===== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.info-card {
  background: var(--cream);
  padding: 36px 28px;
  border-left: 3px solid var(--orange);
  transition: box-shadow 0.3s;
}

.info-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.06); }

.ic-icon { font-size: 34px; margin-bottom: 14px; }

.ic-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ic-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* ===== REQ TABLE ===== */
.req-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.req-table th {
  background: var(--dark);
  color: var(--white);
  padding: 15px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.req-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}

.req-table tr:last-child td { border-bottom: none; }
.req-table tr:nth-child(even) td { background: var(--cream); }

.badge {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(212,84,26,0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  border-radius: 100px;
}

.badge-green {
  background: rgba(40,167,69,0.1);
  color: #28a745;
}

/* ===== BENEFIT CARDS ===== */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.benefit-card {
  border: 1px solid var(--border);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.benefit-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

.benefit-card:hover::after { transform: scaleX(1); }

.bc-amount {
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 42px;
  color: var(--orange);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.bc-unit {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 18px;
}

.bc-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.bc-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.85;
}

.bc-list {
  margin-top: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bc-list li {
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bc-list li::before {
  content: '✓';
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 600;
}

/* ===== PROCESS STEPS ===== */
.process-timeline {
  margin-top: 60px;
  position: relative;
  padding-left: 100px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 40px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.pt-step {
  position: relative;
  margin-bottom: 56px;
}

.pt-step:last-child { margin-bottom: 0; }

.pt-num {
  position: absolute;
  left: -100px;
  top: 0;
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 28px;
  color: var(--orange);
  font-weight: 600;
  z-index: 1;
}

.pt-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.pt-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pt-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.85;
  max-width: 680px;
}

.pt-box {
  margin-top: 16px;
  background: var(--cream);
  border-left: 3px solid var(--orange);
  padding: 18px 22px;
  display: inline-block;
  min-width: 320px;
}

.pt-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pt-box li {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pt-box li::before {
  content: '—';
  color: var(--orange);
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-list { margin-top: 56px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Noto Sans KR', sans-serif;
  transition: color 0.25s;
}

.faq-q:hover { color: var(--orange); }

.faq-icon {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-q   { color: var(--orange); }
.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: rotate(45deg);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 4px 0 22px;
  font-size: 14px;
  color: #555;
  line-height: 1.95;
}

.faq-item.open .faq-a { max-height: 400px; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.ct-info-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
}

.ct-info-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 40px;
}

.ct-detail { display: flex; flex-direction: column; gap: 22px; }

.ct-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ct-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,84,26,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ct-detail-text strong {
  display: block;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ct-detail-text span {
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}

.ct-kakao-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  background: #FEE500;
  color: #391B1B;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.25s;
  width: fit-content;
}

.ct-kakao-btn:hover { opacity: 0.85; }

.ct-form {
  background: var(--cream);
  padding: 48px;
}

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 9px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--orange); }

.form-textarea {
  height: 130px;
  resize: vertical;
}

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

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.form-checkbox-group input { margin-top: 3px; accent-color: var(--orange); }

.form-checkbox-group label { font-size: 13px; color: #555; line-height: 1.6; }

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 17px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: 'Noto Sans KR', sans-serif;
  transition: background 0.3s;
  margin-top: 8px;
}

.btn-submit:hover { background: var(--orange-hover); }

/* ===== BURDEN FEE CALCULATOR ===== */
.calc-section {
  background: var(--dark);
  padding: 100px 0;
}

.calc-section .section-sub  { color: rgba(255,255,255,0.5); }
.calc-section .section-title { color: var(--white); }
.calc-section .section-desc  { color: rgba(255,255,255,0.55); }
.calc-section .section-line  { background: rgba(255,255,255,0.2); }

.calc-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 48px;
  max-width: 820px;
  margin: 48px auto 0;
}

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

.calc-group label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.calc-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s;
}

.calc-input:focus { border-color: var(--orange); }

.calc-btn {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: 0.06em;
  transition: background 0.3s;
}

.calc-btn:hover { background: var(--orange-hover); }

.calc-result {
  background: rgba(212,84,26,0.14);
  border: 1px solid rgba(212,84,26,0.3);
  padding: 32px;
  margin-top: 24px;
  text-align: center;
  display: none;
}

.calc-result.show { display: block; }

.calc-result-main {
  font-family: 'Playfair Display', 'Noto Serif KR', serif;
  font-size: 52px;
  color: var(--orange);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.calc-result-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== FLOATING BUTTONS ===== */
.floating-btns {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.3s;
  cursor: pointer;
}

.float-btn:hover { transform: scale(1.1); }

.float-kakao { background: #FEE500; }

.float-phone {
  background: var(--orange);
  box-shadow: 0 4px 20px rgba(212,84,26,0.35);
  animation: floatPulse 2.2s infinite;
}

.float-top {
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 18px;
  color: var(--dark);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,84,26,0.35); }
  50%       { box-shadow: 0 4px 30px rgba(212,84,26,0.6); }
}

/* ===== ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== FLOW DIAGRAM (연계고용) ===== */
.flow-diagram {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 56px 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.flow-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 32px 20px;
  background: var(--cream);
  position: relative;
}

.flow-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--orange);
  z-index: 1;
  background: var(--white);
  padding: 4px 0;
}

.flow-step:last-child::after { display: none; }

.flow-step-icon { font-size: 32px; margin-bottom: 12px; }

.flow-step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.flow-step-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

.compare-table th {
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.compare-table th.highlight { background: var(--orange); }

.compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  text-align: center;
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: var(--cream);
}

.compare-table tr:last-child td { border-bottom: none; }

.check { color: var(--orange); font-size: 18px; font-weight: 700; }
.dash  { color: var(--gray); font-size: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .about-grid      { grid-template-columns: 1fr; gap: 56px; }
  .benefit-cards   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
  .info-cards      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .container   { padding: 0 22px; }

  .nav-menu    { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta     { display: none; }
  .nav-inner   { padding: 0 22px; }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 74px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 28px 22px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.open li { border-bottom: 1px solid var(--border); }
  .nav-menu.open a  { display: block; padding: 16px 0; font-size: 16px; }

  .hero-frame  { display: none; }
  .hero-deco   { display: none; }
  .hero-btns   { flex-direction: column; }

  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2)  { border-right: none; }
  .stat-cell               { border-bottom: 1px solid rgba(255,255,255,0.08); }

  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .info-cards     { grid-template-columns: 1fr; }
  .benefit-cards  { grid-template-columns: 1fr; }
  .calc-row       { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 36px; }
  .ft-bottom      { flex-direction: column; gap: 10px; text-align: center; }

  .about-visual { height: 300px; }
  .ab-big-num   { font-size: 56px; }

  .process-timeline { padding-left: 80px; }
  .process-timeline::before { left: 28px; }
  .pt-num { left: -80px; width: 60px; height: 60px; font-size: 22px; }

  .flow-diagram { flex-direction: column; }
  .flow-step::after {
    right: auto;
    bottom: -18px;
    top: auto;
    content: '↓';
    transform: none;
    left: 50%;
    margin-left: -10px;
  }

  .floating-btns { bottom: 20px; right: 20px; }
}
