/* ====================================================
   WorkON Landing Page — Main Stylesheet v2
   이미지 강화 + B2B 상담 전환형 디자인
==================================================== */

:root {
  --navy:        #1A2B52;
  --navy-dark:   #111C3A;
  --navy-light:  #2E4080;
  --blue:        #2563EB;
  --blue-light:  #3B82F6;
  --blue-pale:   #EFF6FF;
  --teal:        #0D7490;
  --teal-light:  #E0F2FE;
  --white:       #FFFFFF;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-300:    #D1D5DB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --gray-600:    #4B5563;
  --gray-700:    #374151;
  --gray-800:    #1F2937;
  --gray-900:    #111827;
  --success:     #16A34A;
  --red:         #DC2626;

  --font-main:   'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:   0 24px 64px rgba(0,0,0,.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   24px;
  --transition:  all .22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: var(--font-main); color: var(--gray-800); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Container ---- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- Section ---- */
.section { padding: 96px 0; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-eyebrow {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-pale);
  padding: 4px 13px; border-radius: 20px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 800;
  color: var(--navy); line-height: 1.3; letter-spacing: -.025em;
}
.section-desc { margin-top: 18px; font-size: 18px; color: var(--gray-600); line-height: 1.85; }
.section-subdesc { margin-top: 12px; font-size: 16px; color: var(--gray-500); line-height: 1.8; }

/* ====================================================
   BUTTONS
==================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; border-radius: var(--radius-sm);
  transition: var(--transition); white-space: nowrap; cursor: pointer;
  letter-spacing: -.01em;
}
.btn-sm   { font-size: 13px; padding: 7px 16px; }
.btn-md   { font-size: 14px; padding: 10px 24px; }
.btn-lg   { font-size: 16px; padding: 14px 30px; }
.btn-xl   { font-size: 17px; padding: 17px 40px; }
.btn-full { width: 100%; justify-content: center; padding-top: 14px; padding-bottom: 14px; font-size: 15px; }

.btn-primary { background: var(--blue); color: var(--white); border: 2px solid var(--blue); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--navy); border: 2px solid var(--white); }
.btn-white:hover { background: var(--blue-pale); border-color: var(--blue-pale); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ====================================================
   HEADER
==================================================== */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; height: 110px; gap: 32px; }
.logo { display: flex; align-items: center; gap: 9px; font-size: 20px; font-weight: 800; color: var(--navy); flex-shrink: 0; }
.logo-mark { width: 34px; height: 34px; background: var(--blue); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 900; }
.logo-text { letter-spacing: -.01em; }
/* 이미지 로고 - 헤더(흰배경): mix-blend-mode로 자연스럽게 */
.logo-img-wrap { padding: 0; }
.logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}
/* 푸터 로고: 이미지 + 텍스트 가로 배치 */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 14px;
}
.logo-img-footer {
  height: 38px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.gnb { margin-left: auto; }
.gnb ul { display: flex; gap: 2px; }
.gnb ul li a { font-size: 14px; font-weight: 500; color: var(--gray-600); padding: 6px 13px; border-radius: var(--radius-sm); transition: var(--transition); }
.gnb ul li a:hover { color: var(--navy); background: var(--gray-100); }
.header-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================
   HERO
==================================================== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 48px 0 80px; position: relative; overflow: hidden;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: url('images/hero-meeting.jpg') center/cover no-repeat;
  opacity: .08; pointer-events: none;
}
/* 히어로 카드형 이미지 */
.hero-card-img-wrap {
  position: relative; z-index: 2;
  margin-bottom: 36px;
}
.hero-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
}
.hero::before {
  content: ''; position: absolute; top: -120px; right: -100px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 440px; gap: 56px;
  align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,.7);
  letter-spacing: .04em; margin-bottom: 18px;
  display: flex; align-items: center; gap: 9px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--blue-light); border-radius: 1px; }
.hero-headline {
  font-size: clamp(34px, 5.5vw, 54px); font-weight: 900; color: var(--white);
  line-height: 1.24; letter-spacing: -.03em; margin-bottom: 24px;
}
.hero-headline em { font-style: normal; color: #60A5FA; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.82); line-height: 1.9; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust li { font-size: 13px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 7px; }
.hero-trust li i { color: #34D399; font-size: 15px; }

/* Hero Form */
.hero-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px 28px; box-shadow: var(--shadow-xl);
}
.form-card-title {
  font-size: 14.5px; font-weight: 700; color: var(--navy);
  margin-bottom: 22px; padding-bottom: 16px;
  border-bottom: 2px solid var(--blue-pale); line-height: 1.55;
  display: flex; align-items: flex-start; gap: 9px;
}
.form-card-title i { color: var(--blue); margin-top: 2px; flex-shrink: 0; }

/* ====================================================
   FORMS
==================================================== */
.inquiry-form .form-row { display: flex; gap: 12px; }
.inquiry-form .form-row.two-col > * { flex: 1; min-width: 0; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--gray-800);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px; }
.form-group textarea { resize: vertical; }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: var(--red); }
.form-privacy {
  padding: 14px; background: var(--gray-50); border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); margin-bottom: 14px;
}
.checkbox-label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gray-700); cursor: pointer; line-height: 1.5; }
.checkbox-label input[type="checkbox"] { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); }
.privacy-desc { font-size: 11.5px; color: var(--gray-500); margin-top: 6px; line-height: 1.6; }
.privacy-link { display: inline-block; font-size: 12px; color: var(--blue); text-decoration: underline; margin-top: 6px; cursor: pointer; }
.privacy-link:hover { color: var(--navy); }
.form-note { text-align: center; font-size: 12px; color: var(--gray-500); margin-top: 12px; line-height: 1.6; }

/* ====================================================
   PROBLEM SECTION
==================================================== */
.problem-section { background: var(--gray-50); }

.problem-intro {
  display: grid; grid-template-columns: 1fr 480px; gap: 56px;
  align-items: center; margin-bottom: 52px;
}
.problem-intro-text .section-title { margin-bottom: 0; }
.problem-intro-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.problem-intro-img img { width: 100%; height: 280px; object-fit: cover; object-position: top; display: block; border-radius: 16px; }
.problem-intro-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,43,82,.08) 0%, transparent 60%);
  pointer-events: none;
}

.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.problem-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 28px 24px; border: 1.5px solid var(--gray-200); transition: var(--transition);
}
.problem-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.problem-icon { width: 46px; height: 46px; background: var(--blue-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 20px; margin-bottom: 14px; }
.problem-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.45; }
.problem-card p { font-size: 14px; color: var(--gray-600); line-height: 1.78; }

.problem-solve-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
}
.problem-solve-inner { padding: 30px 24px; text-align: center; }
.problem-solve-inner > i { font-size: 34px; color: #60A5FA; margin-bottom: 14px; }
.problem-solve-inner p { font-size: 15px; color: rgba(255,255,255,.88); line-height: 1.78; margin-bottom: 20px; }
.problem-solve-inner p strong { color: #93C5FD; }

/* ====================================================
   SERVICES
==================================================== */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 40px; }

.service-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.service-card-img { position: relative; height: 210px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-img-badge {
  position: absolute; bottom: 14px; right: 14px;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white); box-shadow: var(--shadow-md);
}
.service-img-badge.navy { background: var(--navy); }
.service-img-badge.blue  { background: var(--blue); }
.service-img-badge.teal  { background: var(--teal); }

.service-card-body { padding: 24px 24px 28px; }
.service-name { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-badge { display: inline-block; font-size: 12px; font-weight: 600; color: var(--blue); background: var(--blue-pale); padding: 3px 11px; border-radius: 20px; margin-bottom: 18px; }
.service-label { font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.service-label i { color: var(--blue); }
.service-situation { margin-bottom: 16px; }
.service-situation ul li { font-size: 13.5px; color: var(--gray-700); padding-left: 14px; position: relative; margin-bottom: 5px; line-height: 1.65; }
.service-situation ul li::before { content: '·'; position: absolute; left: 4px; color: var(--blue); font-weight: 900; }
.service-benefit-text { font-size: 13.5px; color: var(--gray-600); line-height: 1.8; padding-top: 14px; border-top: 1px solid var(--gray-100); margin-bottom: 16px; }
.service-cta-link { font-size: 14px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-cta-link:hover { color: var(--navy); gap: 10px; }

.services-footer-msg {
  background: linear-gradient(135deg, var(--blue-pale) 0%, #DBEAFE 100%);
  border: 1.5px solid #BFDBFE; border-radius: var(--radius-lg); padding: 32px 36px;
}
.services-footer-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.services-footer-inner > i { font-size: 28px; color: var(--blue); flex-shrink: 0; }
.services-footer-inner p { flex: 1; font-size: 15.5px; color: var(--navy); line-height: 1.75; min-width: 200px; }
.services-footer-inner p strong { color: var(--blue); font-weight: 700; }

/* ====================================================
   WHY WORKON — 이미지 2단 레이아웃
==================================================== */
.why-section { background: var(--gray-50); }
.why-layout { display: grid; grid-template-columns: 1fr 440px; gap: 72px; align-items: center; }

.why-quote {
  font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.65;
  border-left: 4px solid var(--blue); padding: 14px 20px;
  background: var(--blue-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0 32px; font-style: normal;
}

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 22px 18px; border: 1.5px solid var(--gray-200);
  display: flex; align-items: flex-start; gap: 14px; transition: var(--transition);
}
.why-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.why-icon { width: 40px; height: 40px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 17px; flex-shrink: 0; }
.why-card h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.why-card p { font-size: 13px; color: var(--gray-600); line-height: 1.75; }

/* 이미지 스택 */
.why-img-stack { position: relative; }
.why-img-main { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); object-fit: cover; height: 480px; }
.why-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
}
.why-img-badge i { font-size: 24px; color: #60A5FA; flex-shrink: 0; }
.why-img-badge span { font-size: 13.5px; font-weight: 700; line-height: 1.55; }

/* ====================================================
   TARGET
==================================================== */
.target-section { background: var(--white); }

/* 아이콘 배너 카드 (이미지 대체) */
.target-banner-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.target-banner-card {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 24px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.target-banner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.target-banner-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  background: rgba(255,255,255,.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #60A5FA;
}
.target-banner-text h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.target-banner-text p { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.5; }

.target-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 40px;
}
.target-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 20px; background: var(--gray-50);
  border-radius: var(--radius-md); border: 1.5px solid var(--gray-200); transition: var(--transition);
}
.target-item:hover { background: var(--blue-pale); border-color: #BFDBFE; }
.target-icon { width: 44px; height: 44px; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; flex-shrink: 0; }
.target-text h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.target-text p { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; }

.target-footer {
  text-align: center; padding: 40px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.target-footer p { font-size: 16px; color: rgba(255,255,255,.88); line-height: 1.8; margin-bottom: 22px; }
.target-footer p strong { color: #93C5FD; }

/* ====================================================
   PROCESS
==================================================== */
.process-section { background: var(--gray-50); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; padding: 0 14px; }
.step-circle {
  width: 76px; height: 76px; background: var(--navy); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px; margin-bottom: 24px;
  position: relative; z-index: 2; box-shadow: 0 4px 18px rgba(26,43,82,.28);
}
.step-num { font-size: 9px; font-weight: 800; letter-spacing: .1em; color: rgba(255,255,255,.65); line-height: 1; margin-bottom: 2px; }
.step-connector {
  position: absolute; top: 38px; left: calc(50% + 38px); right: calc(-50% + 38px);
  height: 2px; background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  z-index: 1;
}
.process-step.last .step-connector { display: none; }
.step-content h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-content p { font-size: 13.5px; color: var(--gray-600); line-height: 1.78; }

/* ====================================================
   SITUATION — 이미지 + 리스트 2단
==================================================== */
.situation-section { background: var(--white); }

.situation-layout { display: grid; grid-template-columns: 380px 1fr; gap: 52px; align-items: start; margin-bottom: 44px; }

.situation-img-wrap { position: sticky; top: 88px; }
.situation-img-wrap img { width: 100%; border-radius: var(--radius-xl); object-fit: cover; height: 320px; box-shadow: var(--shadow-lg); }
.situation-img-caption {
  background: var(--navy); border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  margin-top: -4px; box-shadow: var(--shadow-md);
}
.situation-img-caption i { font-size: 22px; color: #60A5FA; flex-shrink: 0; }
.situation-img-caption p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.6; }
.situation-img-caption p strong { color: var(--white); }

.situation-list { display: flex; flex-direction: column; gap: 14px; }
.situation-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; background: var(--gray-50);
  border-radius: var(--radius-md); border: 1.5px solid var(--gray-200);
  border-left: 4px solid var(--blue); transition: var(--transition);
}
.situation-item:hover { background: var(--blue-pale); border-color: #93C5FD; border-left-color: var(--blue); box-shadow: var(--shadow-sm); }
.sit-icon { width: 40px; height: 40px; background: var(--blue); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.sit-text p { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; line-height: 1.5; }
.sit-text span { font-size: 13.5px; color: var(--gray-600); line-height: 1.72; }

.situation-cta {
  text-align: center; padding: 44px; background: var(--blue-pale);
  border-radius: var(--radius-lg); border: 1.5px solid #BFDBFE;
}
.situation-cta p { font-size: 16px; color: var(--navy); line-height: 1.8; margin-bottom: 22px; }

/* ====================================================
   FAQ
==================================================== */
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--blue-light); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 26px; text-align: left; cursor: pointer; transition: var(--transition); }
.faq-q:hover { background: var(--gray-50); }
.faq-item.open .faq-q { background: var(--blue-pale); }
.faq-q span { font-size: 15px; font-weight: 600; color: var(--navy); line-height: 1.5; }
.faq-arrow { color: var(--gray-400); font-size: 14px; flex-shrink: 0; transition: transform .3s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--blue); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; padding: 0 26px; }
.faq-a p { font-size: 14.5px; color: var(--gray-600); line-height: 1.88; padding-bottom: 22px; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 4px; }

/* ====================================================
   FINAL CTA — 풀 이미지 배경
==================================================== */
.final-cta-section { position: relative; padding: 100px 0; text-align: center; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(17,28,58,.88) 0%, rgba(26,43,82,.82) 100%); }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-title { font-size: clamp(28px, 4.5vw, 46px); font-weight: 900; color: var(--white); line-height: 1.28; letter-spacing: -.03em; margin-bottom: 20px; }
.final-cta-desc { font-size: 17px; color: rgba(255,255,255,.84); line-height: 1.82; margin-bottom: 38px; }
.final-cta-note { font-size: 14px; color: rgba(255,255,255,.58); margin-top: 18px; }

/* ====================================================
   CONTACT
==================================================== */
.contact-section { background: var(--white); }
.contact-wrap { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: start; }
.contact-info .section-title { margin-bottom: 12px; }
.contact-desc { font-size: 15px; color: var(--gray-600); line-height: 1.78; margin-bottom: 28px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-item > i { width: 38px; height: 38px; background: var(--blue-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.cd-label { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.cd-value { font-size: 15px; font-weight: 600; color: var(--navy); transition: var(--transition); }
a.cd-value:hover { color: var(--blue); }
.contact-hours { padding: 14px 16px; background: var(--gray-50); border-radius: var(--radius-sm); border-left: 3px solid var(--blue); margin-bottom: 24px; }
.contact-hours p { font-size: 13px; color: var(--gray-600); line-height: 1.65; display: flex; align-items: flex-start; gap: 8px; }
.contact-hours p i { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

.contact-side-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-side-img img { width: 100%; height: 180px; object-fit: cover; }

.contact-form-wrap { background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px 32px; border: 1.5px solid var(--gray-200); }

/* ====================================================
   FOOTER
==================================================== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.75); padding: 56px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo .logo-mark { background: var(--blue); }
.footer-tagline { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 14px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-contact a i { color: var(--blue-light); }
.footer-contact a:hover { color: var(--white); }
.footer-nav-wrap { display: flex; gap: 48px; }
.footer-nav-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col ul li a { font-size: 14px; color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-nav-col ul li a:hover { color: var(--white); }
.footer-biz { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-biz p { font-size: 12.5px; color: rgba(255,255,255,.4); display: flex; flex-wrap: wrap; gap: 4px 24px; }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.4); }

/* ====================================================
   MOBILE BOTTOM CTA
==================================================== */
.mobile-bottom-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 950; padding: 10px 12px;
  background: var(--white); border-top: 1.5px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1); gap: 10px;
}
.mobile-cta-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 0; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; transition: var(--transition); }
.mobile-cta-btn.call { background: var(--navy); color: var(--white); }
.mobile-cta-btn.call:hover { background: var(--navy-dark); }
.mobile-cta-btn.inquiry { background: var(--blue); color: var(--white); }
.mobile-cta-btn.inquiry:hover { background: var(--navy); }

/* ====================================================
   MODALS
==================================================== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.52); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; max-width: 460px; width: 100%; text-align: center; box-shadow: var(--shadow-xl); animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(.93) translateY(14px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-icon.success { font-size: 54px; color: var(--success); margin-bottom: 16px; }
.modal-box h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.modal-box p { font-size: 15px; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; }
.modal-box p a { color: var(--blue); font-weight: 700; }
.modal-close-btn { min-width: 140px; }

.privacy-modal-box { max-width: 640px; text-align: left; padding: 0; max-height: 85vh; display: flex; flex-direction: column; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--gray-200); flex-shrink: 0; }
.modal-header h3 { font-size: 18px; font-weight: 800; color: var(--navy); }
.modal-x-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--gray-500); font-size: 16px; transition: var(--transition); }
.modal-x-btn:hover { background: var(--gray-100); color: var(--navy); }
.privacy-content { padding: 22px 28px; overflow-y: auto; flex: 1; }
.privacy-content h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin: 16px 0 6px; }
.privacy-content h4:first-child { margin-top: 0; }
.privacy-content p { font-size: 13.5px; color: var(--gray-600); line-height: 1.75; }
.privacy-modal-box .modal-close-btn { margin: 16px 28px 22px; width: calc(100% - 56px); align-self: center; }

/* ====================================================
   FADE IN ANIMATION
==================================================== */
.fade-in-up { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ====================================================
   TABLET (≤ 1080px)
==================================================== */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-form-wrap { max-width: 580px; }
  .problem-intro { grid-template-columns: 1fr; gap: 32px; }
  .problem-intro-img img { height: 240px; border-radius: 14px; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-img-main { height: 360px; }
  .why-img-badge { bottom: -14px; left: -10px; }
  .situation-layout { grid-template-columns: 1fr; gap: 32px; }
  .situation-img-wrap { position: static; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-solve-card { grid-column: span 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .step-connector { display: none; }
  .target-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   MOBILE (≤ 640px)
==================================================== */
@media (max-width: 640px) {
  .header-inner { height: 68px; }
  .logo-img { height: 46px; max-width: 180px; mix-blend-mode: multiply; }
  /* hero-person-img 미사용 */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  .gnb {
    display: none; position: fixed; top: 88px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px 20px; z-index: 899; box-shadow: var(--shadow-md);
  }
  .gnb.open { display: block; }
  .gnb ul { flex-direction: column; gap: 2px; }
  .gnb ul li a { display: block; padding: 10px 12px; font-size: 15px; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 52px 0 60px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 10px; }

  .problem-grid { grid-template-columns: 1fr; }
  .problem-solve-card { grid-column: span 1; }
  .target-banner-row { grid-template-columns: 1fr; }

  .inquiry-form .form-row.two-col { flex-direction: column; }
  .services-footer-inner { flex-direction: column; text-align: center; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  .contact-form-wrap { padding: 24px 18px; }
  .contact-side-img { display: none; }

  .footer-nav-wrap { flex-direction: column; gap: 24px; }

  .mobile-bottom-cta { display: flex; }
  body { padding-bottom: 72px; }

  .final-cta-section { padding: 68px 0; }
  .why-img-badge { left: 0; bottom: -12px; }
}

@media (max-width: 400px) {
  .hero-headline { font-size: 32px; }
  .section-title { font-size: 21px; }
  .final-cta-title { font-size: 26px; }
}
