/* =====================================================
   창업메이트 - Global Stylesheet v3.0 (Multi-page)
   Color Palette:
     Navy   #1B3A6B
     Blue   #2A5FC1
     White  #FFFFFF
     Light  #F5F7FA
     Dark   #0d1b2a
   ===================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #2A5FC1; margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900; line-height: 1.25; color: #0d1b2a;
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.section-title span { color: #2A5FC1; }
.section-desc {
  font-size: 1.05rem; color: #555;
  line-height: 1.9; max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ---------- Layout ---------- */
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
section { padding: 90px 0; }

/* ---------- Sub-page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #1B3A6B 60%, #2A5FC1 100%);
  padding: 140px 0 80px; text-align: center; color: #fff;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; line-height: 1.9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary { background: #1B3A6B; color: #fff; box-shadow: 0 4px 20px rgba(27,58,107,0.3); }
.btn-primary:hover { background: #2A5FC1; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,95,193,0.4); }
.btn-outline { background: transparent; color: #1B3A6B; border: 2px solid #1B3A6B; }
.btn-outline:hover { background: #1B3A6B; color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #1B3A6B; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.btn-white:hover { background: #f0f4ff; transform: translateY(-2px); }
.btn-kakao { background: #FEE500; color: #3C1E1E; }
.btn-kakao:hover { background: #f5da00; transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }

/* =====================================================
   NAVIGATION (공통)
   ===================================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0;
  transition: all 0.35s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
/* 서브페이지: 처음부터 흰 배경 */
#navbar.always-white {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; width: 90%; max-width: 1200px; margin: 0 auto;
}

/* 로고 */
.nav-logo img {
  width: 103px; height: auto;
  filter: brightness(0) invert(1);   /* 기본: 흰색 (히어로 배경) */
  transition: filter 0.3s ease;
}
#navbar.scrolled .nav-logo img,
#navbar.always-white .nav-logo img { filter: none; }  /* 스크롤 후/서브페이지: 검정 */

/* 데스크탑 링크 */
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s; position: relative;
}
#navbar.scrolled .nav-links a,
#navbar.always-white .nav-links a { color: #1a1a1a; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #2A5FC1; transition: width 0.25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #60a5fa; }
#navbar.scrolled .nav-links a.active,
#navbar.always-white .nav-links a.active { color: #2A5FC1; }
.nav-links a.active::after { width: 100%; }

/* CTA 버튼 */
.nav-cta {
  padding: 0.55rem 1.4rem !important; border-radius: 50px !important;
  background: #2A5FC1 !important; color: #fff !important;
  font-size: 0.85rem !important; border: none !important;
}
.nav-cta:hover { background: #1B3A6B !important; }
.nav-cta::after { display: none !important; }

/* 햄버거 */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
#navbar.scrolled .nav-hamburger span,
#navbar.always-white .nav-hamburger span { background: #1a1a1a; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* 모바일 메뉴 */
.nav-mobile {
  display: none; flex-direction: column;
  background: #fff; padding: 1.5rem 5%; gap: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; font-weight: 600; color: #1a1a1a; padding: 0.5rem 0; border-bottom: 1px solid #f0f0f0; }
.nav-mobile .nav-cta-m {
  display: block; text-align: center; margin-top: 0.5rem;
  background: #2A5FC1; color: #fff !important; padding: 0.8rem !important;
  border-radius: 50px; font-weight: 700; border-bottom: none !important;
}

/* =====================================================
   HOME - HERO
   ===================================================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b2a 0%, #1B3A6B 50%, #2A5FC1 100%);
  display: flex; align-items: center; padding-top: 72px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(42,95,193,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  width: 90%; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 0.45rem 1.1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.9);
  margin-bottom: 1.6rem; backdrop-filter: blur(6px);
}
.hero-badge-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: pulse-green 1.8s infinite; }
@keyframes pulse-green { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900;
  color: #fff; line-height: 1.2; margin-bottom: 1.4rem; letter-spacing: -0.02em;
}
.hero-title .highlight { color: #60a5fa; display: block; }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  margin-bottom: 2.4rem; line-height: 1.9; max-width: 480px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.2); align-self: stretch; }
.hero-image { display: flex; justify-content: center; align-items: flex-end; }
.hero-image img { max-height: 560px; width: auto; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* =====================================================
   HOME - SERVICE PREVIEW (3 cards)
   ===================================================== */
#service-preview { background: #F5F7FA; }
.service-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.service-preview-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.service-preview-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(27,58,107,0.14); }
.service-preview-icon { font-size: 2.8rem; margin-bottom: 0.5rem; }
.service-preview-card h3 { font-size: 1.1rem; font-weight: 800; color: #0d1b2a; }
.service-preview-card p { font-size: 0.88rem; color: #666; line-height: 1.75; }
.service-preview-card .btn { margin-top: 0.8rem; font-size: 0.82rem; padding: 0.6rem 1.4rem; }

/* =====================================================
   HOME - REVIEWS PREVIEW (3 cards)
   ===================================================== */
#reviews-preview { background: #fff; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.review-card {
  background: #F5F7FA; border-radius: 20px; padding: 2rem;
  transition: all 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,58,107,0.1); }
.review-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
.review-text { font-size: 0.9rem; color: #444; line-height: 1.85; margin-bottom: 1.2rem; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px; height: 40px; background: linear-gradient(135deg, #1B3A6B, #2A5FC1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; font-weight: 800; flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 0.88rem; font-weight: 700; color: #0d1b2a; }
.review-author-info span { font-size: 0.78rem; color: #999; }
.review-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.8rem; }
.review-tag { background: #EEF3FF; color: #2A5FC1; font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 50px; }
.review-quote-icon { font-size: 2.5rem; color: #dde6f5; font-family: Georgia, serif; line-height: 1; margin-bottom: 0.4rem; }

/* =====================================================
   HOME - PACKAGE PREVIEW (3-step)
   ===================================================== */
#package-preview { background: #F5F7FA; }
.package-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.package-preview-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  border: 2px solid #e8edf5; transition: all 0.3s; position: relative;
}
.package-preview-card.best { border-color: #1B3A6B; background: linear-gradient(160deg,#eef3ff,#fff); }
.package-preview-card:hover { transform: translateY(-4px); box-shadow: 0 14px 45px rgba(27,58,107,0.14); }
.pkg-best-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg,#1B3A6B,#2A5FC1); color: #fff;
  font-size: 0.7rem; font-weight: 800; padding: 0.3rem 1.2rem; border-radius: 50px;
}
.pkg-num { font-size: 0.7rem; font-weight: 800; color: #2A5FC1; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.package-preview-card h3 { font-size: 1.05rem; font-weight: 800; color: #0d1b2a; margin-bottom: 0.5rem; }
.package-preview-card .pkg-services { font-size: 0.82rem; color: #666; margin-bottom: 1rem; line-height: 1.7; padding: 0.7rem; background: #f8faff; border-radius: 8px; }
.package-preview-card .pkg-price { font-size: 1.5rem; font-weight: 900; color: #1B3A6B; }
.package-preview-card .pkg-original { font-size: 0.85rem; color: #bbb; text-decoration: line-through; margin-right: 0.4rem; }
.package-preview-card .pkg-vat { font-size: 0.72rem; color: #bbb; margin-top: 0.2rem; }
.pkg-save { display: inline-block; font-size: 0.72rem; font-weight: 800; color: #e03; background: #fff0f0; padding: 0.2rem 0.6rem; border-radius: 50px; margin-left: 0.4rem; }

/* =====================================================
   HOME - PAIN POINTS (2x2)
   ===================================================== */
#pain-preview { background: #fff; }
.pain-grid-2x2 {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin-top: 3rem; max-width: 780px; margin-left: auto; margin-right: auto;
}
.pain-card {
  background: #F5F7FA; border-radius: 16px; padding: 1.4rem 1.6rem;
  display: flex; align-items: flex-start; gap: 1rem;
  border-left: 4px solid transparent; transition: all 0.25s;
}
.pain-card:hover { border-left-color: #2A5FC1; background: #EEF3FF; }
.pain-check {
  width: 28px; height: 28px; min-width: 28px;
  background: #EEF3FF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 0.1rem;
}
.pain-check svg { width: 14px; height: 14px; stroke: #2A5FC1; }
.pain-card p { font-size: 0.92rem; font-weight: 500; color: #333; line-height: 1.65; }

/* =====================================================
   HOME - CEO BRIEF
   ===================================================== */
#ceo-brief { background: #F5F7FA; }
.ceo-brief-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 3rem; align-items: center; max-width: 860px; margin: 0 auto;
}
.ceo-brief-img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; object-position: top; box-shadow: 0 12px 40px rgba(27,58,107,0.18); }
.ceo-brief-content .ceo-name { font-size: 1.4rem; font-weight: 900; color: #0d1b2a; margin-bottom: 0.2rem; }
.ceo-brief-content .ceo-role { font-size: 0.9rem; color: #2A5FC1; font-weight: 600; margin-bottom: 1rem; }
.ceo-brief-content p { font-size: 0.92rem; color: #555; line-height: 1.9; }
.ceo-brief-stats { display: flex; gap: 1.5rem; margin-top: 1.2rem; flex-wrap: wrap; }
.ceo-brief-stat { text-align: center; }
.ceo-brief-stat strong { display: block; font-size: 1.3rem; font-weight: 900; color: #1B3A6B; }
.ceo-brief-stat span { font-size: 0.72rem; color: #888; }

/* =====================================================
   HOME - FINAL CTA
   ===================================================== */
#final-cta {
  background: linear-gradient(135deg, #0d1b2a 0%, #1B3A6B 100%);
  padding: 90px 0; text-align: center;
}
#final-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: #fff; margin-bottom: 1rem; }
#final-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   SERVICES PAGE
   ===================================================== */
.services-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-detail-card {
  background: #fff; border-radius: 24px; padding: 2.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
  display: flex; flex-direction: column;
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(27,58,107,0.15); }
.svc-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: #EEF3FF; color: #2A5FC1; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.85rem; border-radius: 50px; margin-bottom: 1.2rem; width: fit-content; }
.svc-badge.free { background: #e6fff0; color: #16a34a; }
.svc-num { font-size: 0.7rem; font-weight: 700; color: #2A5FC1; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.service-detail-card h3 { font-size: 1.2rem; font-weight: 800; color: #0d1b2a; margin-bottom: 0.8rem; }
.service-detail-card > p { font-size: 0.88rem; color: #666; margin-bottom: 1.2rem; line-height: 1.8; flex: 1; }
.svc-list { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; }
.svc-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.84rem; color: #444; }
.svc-list li::before { content:'→'; color:#2A5FC1; font-weight:700; min-width:1rem; }
.svc-price { display: flex; align-items: baseline; gap: 0.4rem; padding-top: 1rem; border-top: 1px solid #f0f0f0; margin-top: auto; }
.svc-price-label { font-size: 0.78rem; color: #999; }
.svc-price-value { font-size: 1.2rem; font-weight: 900; color: #1B3A6B; }
.svc-price-original { font-size: 0.9rem; color: #bbb; text-decoration: line-through; }
.svc-price-free { font-size: 1.2rem; font-weight: 900; color: #16a34a; }
.svc-price-sale { font-size: 0.75rem; font-weight: 800; color: #e03; background: #fff0f0; padding: 0.15rem 0.5rem; border-radius: 50px; }

/* 가격표 */
.pricing-full-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 1.2rem; margin-top: 2rem;
}
.price-card { border: 2px solid #e8edf5; border-radius: 20px; padding: 1.8rem; transition: all 0.3s; position: relative; }
.price-card:hover { border-color: #2A5FC1; box-shadow: 0 10px 35px rgba(27,58,107,0.12); transform: translateY(-3px); }
.price-card.featured { border-color: #1B3A6B; background: linear-gradient(160deg,#f0f5ff,#fff); }
.price-badge { position: absolute; top:-12px; left:50%; transform:translateX(-50%); background:#1B3A6B; color:#fff; font-size:0.7rem; font-weight:800; padding:0.3rem 1rem; border-radius:50px; white-space:nowrap; }
.price-card-name { font-size: 0.75rem; font-weight: 700; color: #2A5FC1; margin-bottom: 0.4rem; }
.price-card-title { font-size: 1rem; font-weight: 800; color: #0d1b2a; margin-bottom: 0.4rem; line-height: 1.3; }
.price-card-desc { font-size: 0.8rem; color: #888; margin-bottom: 1rem; line-height: 1.6; }
.price-card-original { font-size: 0.88rem; color: #bbb; text-decoration: line-through; }
.price-card-amount { font-size: 1.4rem; font-weight: 900; color: #1B3A6B; }
.price-card-amount.free { color: #16a34a; }
.price-card-vat { font-size: 0.72rem; color: #bbb; margin-bottom: 1rem; }
.price-includes li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8rem; color: #555; margin-bottom: 0.35rem; }
.price-includes li::before { content:'✓'; color:#2A5FC1; font-weight:800; min-width:1rem; }
.price-sale-badge { display: inline-block; font-size: 0.7rem; font-weight: 800; color: #fff; background: #e03; padding: 0.2rem 0.6rem; border-radius: 50px; margin-left: 0.4rem; vertical-align: middle; }

/* 패키지 */
.package-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.package-card { border: 2px solid #e8edf5; border-radius: 24px; padding: 2rem; transition: all 0.3s; position: relative; }
.package-card.best { border-color: #1B3A6B; background: linear-gradient(160deg,#eef3ff,#fff); }
.package-card:hover { transform: translateY(-4px); box-shadow: 0 14px 45px rgba(27,58,107,0.14); }
.pkg-badge2 { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:linear-gradient(90deg,#1B3A6B,#2A5FC1); color:#fff; font-size:0.72rem; font-weight:800; padding:0.35rem 1.2rem; border-radius:50px; }
.package-card h3 { font-size: 1.1rem; font-weight: 800; color: #0d1b2a; margin-bottom: 0.5rem; }
.package-card .pkg-desc { font-size: 0.82rem; color: #666; margin-bottom: 1.2rem; line-height: 1.7; padding: 0.8rem; background: #f8faff; border-radius: 10px; }
.package-card .pkg-price2 { font-size: 1.6rem; font-weight: 900; color: #1B3A6B; }
.package-card .pkg-price2-original { font-size: 0.95rem; color: #bbb; text-decoration: line-through; margin-right: 0.4rem; }
.package-card .pkg-vat2 { font-size: 0.72rem; color: #bbb; }

/* FAQ */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid #e8edf5; border-radius: 14px; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; text-align: left; font-size: 0.95rem; font-weight: 700; color: #0d1b2a;
  cursor: pointer; background: #fff; transition: background 0.2s;
}
.faq-question:hover { background: #f8faff; }
.faq-question.open { background: #EEF3FF; color: #1B3A6B; }
.faq-icon { font-size: 1.2rem; font-weight: 400; transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 1.2rem 1.5rem; font-size: 0.9rem; color: #555; line-height: 1.85; background: #fafbff; border-top: 1px solid #e8edf5; }
.faq-answer.open { display: block; }

/* =====================================================
   PROCESS PAGE
   ===================================================== */
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; padding: 2rem 0; position: relative;
}
.process-step:not(:last-child)::after {
  content: ''; position: absolute; left: 39px; top: 80px;
  width: 2px; height: calc(100% - 40px);
  background: linear-gradient(180deg, #2A5FC1, #e8edf5);
}
.step-num-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.step-num {
  width: 56px; height: 56px; background: linear-gradient(135deg,#1B3A6B,#2A5FC1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; font-weight: 900; flex-shrink: 0; z-index: 1;
  box-shadow: 0 4px 16px rgba(27,58,107,0.3);
}
.step-icon { font-size: 1.4rem; }
.step-content { padding-top: 0.5rem; }
.step-label { font-size: 0.72rem; font-weight: 700; color: #2A5FC1; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.step-content h3 { font-size: 1.15rem; font-weight: 800; color: #0d1b2a; margin-bottom: 0.6rem; }
.step-content p { font-size: 0.9rem; color: #555; line-height: 1.85; }
.step-duration { display: inline-flex; align-items: center; gap: 0.4rem; background: #EEF3FF; color: #2A5FC1; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.8rem; border-radius: 50px; margin-top: 0.7rem; }

/* =====================================================
   REVIEWS PAGE
   ===================================================== */
.reviews-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.review-card-full {
  background: #fff; border-radius: 24px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
}
.review-card-full:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(27,58,107,0.12); }
.rating-summary { background: linear-gradient(135deg,#0d1b2a,#1B3A6B); border-radius: 24px; padding: 3rem; text-align: center; color: #fff; margin-bottom: 3rem; }
.rating-summary .big-score { font-size: 5rem; font-weight: 900; line-height: 1; }
.rating-summary .big-stars { font-size: 2rem; color: #fbbf24; letter-spacing: 4px; margin: 0.5rem 0; }
.rating-summary p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; max-width: 380px; border-radius: 24px; box-shadow: 0 20px 60px rgba(27,58,107,0.18); position: relative; z-index: 1; }
.about-img-bg { position: absolute; top: 24px; left: 24px; width: 100%; height: 100%; max-width: 380px; background: linear-gradient(135deg,#1B3A6B,#2A5FC1); border-radius: 24px; z-index: 0; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.8rem 0; }
.about-stat { background: #F5F7FA; border-radius: 14px; padding: 1.1rem; text-align: center; }
.about-stat strong { display: block; font-size: 1.4rem; font-weight: 900; color: #1B3A6B; }
.about-stat span { font-size: 0.72rem; color: #888; }
.about-story p { font-size: 0.92rem; color: #555; line-height: 1.95; margin-bottom: 1rem; }
.about-story strong { color: #1B3A6B; }
.about-principles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.2rem; margin-top: 3rem; }
.about-principle { border: 1px solid #e8edf5; border-radius: 18px; padding: 1.8rem; transition: all 0.3s; }
.about-principle:hover { box-shadow: 0 8px 30px rgba(27,58,107,0.1); transform: translateY(-3px); border-color: #2A5FC1; }
.about-principle .pnum { font-size: 0.7rem; font-weight: 800; color: #2A5FC1; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.about-principle .picon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.about-principle h3 { font-size: 1rem; font-weight: 800; color: #0d1b2a; margin-bottom: 0.6rem; }
.about-principle p { font-size: 0.85rem; color: #666; line-height: 1.8; }
.about-principle .pquote { margin-top: 0.7rem; padding: 0.6rem 0.9rem; background: #F5F7FA; border-radius: 8px; font-size: 0.8rem; color: #1B3A6B; font-style: italic; font-weight: 600; }

/* =====================================================
   BLOG PAGE
   ===================================================== */
.blog-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin: 2rem 0; }
.blog-filter-btn { padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: #888; background: #F5F7FA; transition: all 0.2s; border: 1px solid transparent; cursor: pointer; }
.blog-filter-btn.active, .blog-filter-btn:hover { background: #1B3A6B; color: #fff; border-color: #1B3A6B; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }
.blog-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(27,58,107,0.13); }
.blog-card-img { height: 180px; background: linear-gradient(135deg,#1B3A6B,#2A5FC1); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.5rem; }
.blog-card-cat { font-size: 0.72rem; font-weight: 700; color: #2A5FC1; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1rem; font-weight: 800; color: #0d1b2a; margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card p { font-size: 0.84rem; color: #666; line-height: 1.75; margin-bottom: 1rem; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.78rem; color: #bbb; }
.blog-card-link { font-size: 0.82rem; font-weight: 700; color: #2A5FC1; }
.blog-naver-cta { background: linear-gradient(135deg,#03C75A,#00a849); border-radius: 24px; padding: 3rem; text-align: center; color: #fff; margin-top: 4rem; }
.blog-naver-cta h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.6rem; }
.blog-naver-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.8rem; font-size: 0.95rem; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
.contact-form-wrap { background: #fff; border-radius: 24px; padding: 2.5rem; box-shadow: 0 4px 30px rgba(0,0,0,0.07); }
.contact-form-wrap h3 { font-size: 1.1rem; font-weight: 800; color: #0d1b2a; margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: #555; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1.1rem; background: #F5F7FA;
  border: 1px solid #e8edf5; border-radius: 12px; color: #1a1a1a;
  font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #2A5FC1; background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 1rem; background: linear-gradient(90deg,#2A5FC1,#1B3A6B);
  color: #fff; border-radius: 12px; font-size: 0.95rem; font-weight: 800;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(42,95,193,0.4);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(42,95,193,0.5); }
.form-success { display: none; text-align: center; padding: 2rem; color: #16a34a; font-weight: 700; font-size: 1.05rem; }

.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem;
  background: #F5F7FA; border: 1px solid #e8edf5; border-radius: 16px; transition: all 0.25s;
}
.contact-method:hover { background: #EEF3FF; border-color: #2A5FC1; transform: translateX(4px); }
.contact-method-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-method-icon.phone { background: #dbeafe; }
.contact-method-icon.email { background: #d1fae5; }
.contact-method-icon.kakao { background: #fef3c7; }
.contact-method-info strong { display: block; font-size: 0.78rem; color: #888; margin-bottom: 0.2rem; }
.contact-method-info span { font-size: 0.95rem; font-weight: 700; color: #0d1b2a; }
.contact-notice { padding: 1.2rem 1.4rem; background: #EEF3FF; border: 1px solid #c7d9ff; border-radius: 14px; font-size: 0.82rem; color: #555; line-height: 1.8; }
.contact-notice strong { color: #1B3A6B; display: block; margin-bottom: 0.3rem; }

/* =====================================================
   FOOTER
   ===================================================== */
footer { background: #060e1a; color: rgba(255,255,255,0.5); padding: 3rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo img { height: 36px; opacity: 0.8; filter: brightness(0) invert(1); }
.footer-info { font-size: 0.78rem; line-height: 1.9; }
.footer-info strong { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: #60a5fa; }

/* PDF Download 섹션 */
.pdf-section {
  background: linear-gradient(135deg,#1B3A6B,#2A5FC1); border-radius: 24px;
  padding: 2.5rem; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-top: 4rem;
}
.pdf-section-text h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.pdf-section-text p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.pdf-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-pdf { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.8rem; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; color: #fff; font-size: 0.88rem; font-weight: 700; transition: all 0.25s; }
.btn-pdf:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-pdf svg { width: 18px; height: 18px; }

/* 가격 안내 disclaimer */
.pricing-disclaimer { margin-top: 2rem; padding: 1rem 1.4rem; background: #F5F7FA; border-radius: 12px; font-size: 0.8rem; color: #888; text-align: center; line-height: 1.8; }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.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-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media(max-width:900px){
  section{padding:70px 0;}
  .hero-inner{grid-template-columns:1fr;}
  .hero-image{display:none;}
  .about-hero-inner{grid-template-columns:1fr;}
  .about-img-wrap{display:none;}
  .contact-page-inner{grid-template-columns:1fr;}
  .service-preview-grid{grid-template-columns:1fr;}
  .package-preview-grid{grid-template-columns:1fr;}
  .package-full-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .nav-links{display:none;}
  .nav-hamburger{display:flex;}
  section{padding:56px 0;}
  .hero-title{font-size:clamp(1.9rem,7vw,2.6rem);}
  .pain-grid-2x2{grid-template-columns:1fr;}
  .ceo-brief-inner{grid-template-columns:1fr; text-align:center;}
  .ceo-brief-img{width:150px;height:150px;margin:0 auto;}
  .ceo-brief-stats{justify-content:center;}
  .footer-inner{flex-direction:column;text-align:center;}
  .footer-links{justify-content:center;}
  .pdf-section{flex-direction:column;text-align:center;}
  .pdf-buttons{justify-content:center;}
  .cta-buttons{flex-direction:column;align-items:center;}
  .process-step{grid-template-columns:56px 1fr; gap:1rem;}
  .reviews-full-grid{grid-template-columns:1fr;}
}
@media(max-width:480px){
  .pricing-full-grid{grid-template-columns:1fr;}
  .hero-buttons{flex-direction:column;}
  .service-preview-grid{grid-template-columns:1fr;}
  .reviews-grid{grid-template-columns:1fr;}
  .about-stats{grid-template-columns:1fr 1fr;}
  .blog-grid{grid-template-columns:1fr;}
}
html {
  scroll-behavior: smooth;
}