/* ══════════════════════════════════════════
   표쌤코딩 메인 — 기업형 하이브리드 (index-new.html)
   index-home.css에 없는 신규 섹션만 추가
   ══════════════════════════════════════════ */

/* ── 네비 우측 메뉴 ── */
.nav-right-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-right-menu .nav-pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 180ms ease;
}
.nav-right-menu .nav-pill:hover {
  background: rgba(59, 130, 246, 0.09);
  border-color: rgba(59, 130, 246, 0.2);
  color: #2563eb;
}

/* 햄버거 버튼 (모바일 전용 — 데스크탑에서는 숨김) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(200, 215, 255, 0.7);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: #334155;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 네비게이션 — 햄버거 토글 드롭다운 메뉴 */
@media (max-width: 720px) {
  .navbar { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-right-menu {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 280ms ease, opacity 200ms ease, margin-top 200ms ease;
  }
  .nav-right-menu.is-open {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 10px;
  }
  .nav-right-menu .nav-pill {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* ── HERO (기업형 — 스탯 패널 제거, 중앙 정렬형) ── */
.hero-corp { padding: 130px 0 60px; }

.hero-corp-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-corp-inner .hero-badge { margin-bottom: 24px; }

.hero-corp-inner h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.hero-corp-inner .hero-sub {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.85;
  margin: 0 auto 36px;
  max-width: 620px;
}

.hero-corp-inner .hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── 공용 섹션 래퍼 ── */
.corp-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

/* ── eyebrow + 섹션 헤드라인 ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-eyebrow.center {
  display: flex;
  justify-content: center;
}
.eyebrow-line {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}
.eyebrow-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #2563eb;
  text-transform: uppercase;
}

.section-headline {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.section-headline.center {
  text-align: center;
}
.section-headline .grad {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-lead {
  margin: 0 auto 44px;
  text-align: center;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 600px;
}

/* ══════════════════════════════════════════
   ABOUT 4배너 (Company Introduce)
   ══════════════════════════════════════════ */
.about-section { padding-top: 40px; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-card {
  display: block;
  padding: 28px 24px 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(215, 228, 255, 0.9);
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(99, 120, 220, 0.06);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
  opacity: 0;
  transition: opacity 240ms ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(99, 120, 220, 0.16);
  border-color: rgba(59, 130, 246, 0.3);
}
.about-card:hover::before { opacity: 1; }

.about-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.about-card-icon svg { width: 24px; height: 24px; }
.about-card-icon.icon-blue   { background: rgba(59,130,246,0.1);  color: #2563eb; }
.about-card-icon.icon-purple { background: rgba(139,92,246,0.1);  color: #7c3aed; }
.about-card-icon.icon-green  { background: rgba(16,185,129,0.1);  color: #059669; }
.about-card-icon.icon-orange { background: rgba(234,88,12,0.1);   color: #c2410c; }

.about-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.about-card p {
  margin: 0 0 16px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: #64748b;
}

.about-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════
   BUSINESS 3컬럼 (Business Industry)
   리파인 — 무드 컬러 팔레트 + 워터마크 숫자
   ══════════════════════════════════════════ */
.business-section {
  background: linear-gradient(180deg, transparent 0%, rgba(244, 247, 255, 0.4) 50%, transparent 100%);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 880px) {
  .business-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

.business-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              box-shadow 320ms cubic-bezier(.2,.7,.2,1),
              border-color 320ms ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* 카드 상단 이미지/일러스트 영역 */
.business-card-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e9ff 0%, #ede9fe 100%);
}
.business-card-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}
.business-card:hover .business-card-hero img {
  transform: scale(1.05);
}
.business-card-hero-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* 카드3 - undraw 스타일 플랫 일러스트 */
.business-card-hero-undraw {
  background: #ecfdf5;
  overflow: hidden;
}
.business-card-hero-undraw::after { display: none; }
.business-card-hero-undraw svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 500ms ease;
}
.business-card:hover .business-card-hero-undraw svg {
  transform: scale(1.03);
}
.biz3-num-undraw {
  color: rgba(4, 120, 87, 0.6) !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6) !important;
}

/* 카드3 - 그라디언트 + 큰 헤드셋 아이콘 카드 (옛 버전, 미사용) */
.business-card-hero-gradient {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.business-card-hero-gradient::after { display: none; }
.biz3-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.biz3-icon-card {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #047857;
  box-shadow:
    0 12px 32px -8px rgba(4, 120, 87, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.business-card:hover .biz3-icon-card {
  transform: translateY(-5px) rotate(-3deg) scale(1.04);
}
.biz3-icon-card svg {
  width: 42px;
  height: 42px;
}
/* 카드3 숫자 — 그라디언트 위라 밝게 */
.biz3-num-light {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18) !important;
}
/* 우상단 그라디언트 페이드 (숫자 가독성용) */
.business-card-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
.business-card-hero-illustration::after {
  display: none;
}

/* 좌측 컬러 액센트 라인 (호버 시 확장) */
.business-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transition: width 320ms cubic-bezier(.2,.7,.2,1);
}

/* 우측 하단 배경 글로우 */
.business-card::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.04;
  filter: blur(40px);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}

.business-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow:
    0 24px 50px -12px rgba(15, 23, 42, 0.12),
    0 0 0 1px var(--accent-soft);
}

.business-card:hover::before { width: 6px; }
.business-card:hover::after  { opacity: 0.08; transform: scale(1.15); }

/* 워터마크 숫자 - hero 우상단 배치 */
.business-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: transform 320ms ease;
  pointer-events: none;
}
.business-card:hover .business-num {
  transform: translateY(-2px);
}
.business-num-on-illustration {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* 본문 */
.business-card-body {
  position: relative;
  z-index: 1;
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.business-card-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  width: fit-content;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.business-card-body h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.business-card-body p {
  margin: 0 0 22px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: #64748b;
  letter-spacing: -0.005em;
}

.business-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.business-card-link .arrow {
  display: inline-block;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1);
}
.business-card:hover .business-card-link .arrow {
  transform: translateX(5px);
}

/* ── 카드별 무드 액센트 (차분한 톤) ── */
.business-card.accent-slate {
  --accent: #475569;
  --accent-soft: rgba(71, 85, 105, 0.08);
}
.business-card.accent-amber {
  --accent: #b45309;
  --accent-soft: rgba(180, 83, 9, 0.08);
}
.business-card.accent-sage {
  --accent: #047857;
  --accent-soft: rgba(4, 120, 87, 0.08);
}

/* ══════════════════════════════════════════
   PROGRAMS 섹션 래퍼
   ══════════════════════════════════════════ */
.programs-section {
  padding-top: 60px;
  padding-bottom: 40px;
}
.programs-section .tab-bar {
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   SMART STORE (NAS Python 스크립트가 매일 갱신하는 JSON 사용)
   ══════════════════════════════════════════ */
.store-section {
  background: linear-gradient(180deg, transparent 0%, rgba(244, 247, 255, 0.4) 50%, transparent 100%);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 1024px) { .store-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .store-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .store-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; } }

.store-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              box-shadow 280ms cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.14);
}

.store-card-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e9ff 0%, #ede9fe 100%);
}

.store-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.store-card:hover .store-card-thumb img { transform: scale(1.05); }

.store-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  opacity: 0.32;
}

.store-card-soldout {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 7px;
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  backdrop-filter: blur(6px);
}

.store-card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.store-card-body h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-card-pricing {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.store-card-original {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
  text-decoration: line-through;
  letter-spacing: -0.01em;
}

.store-card-price {
  font-size: 1rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: -0.02em;
}

.store-card-price-tbd {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: -0.01em;
}

.store-grid[hidden] { display: none; }
.store-grid:not([hidden]) + .store-cta-panel { margin-top: 40px; }

/* ── 대형 CTA 패널 (상품 카드 유무와 무관하게 항상 표시) ── */
.store-cta-panel {
  margin-top: 40px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #03c75a 0%, #00b04f 60%, #048a3f 100%);
  border-radius: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px -8px rgba(3, 199, 90, 0.32);
}

.store-cta-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.store-cta-panel::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.store-cta-text {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 280px;
}

.store-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}

.store-cta-text h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.store-cta-text p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.store-cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  background: #ffffff;
  color: #048a3f;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 6px 20px -6px rgba(0, 0, 0, 0.25);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1),
              box-shadow 240ms ease;
  white-space: nowrap;
}

.store-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.35);
}

.store-cta-button svg {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}

.store-cta-button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 720px) {
  .store-cta-panel {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .store-cta-button { width: 100%; justify-content: center; }
  .store-cta-text h3 { font-size: 1.2rem; }
}

/* ── 학교·기관 대량 구매 안내 바 ── */
.store-bulk-notice {
  margin-top: 18px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px dashed rgba(37, 99, 235, 0.32);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.store-bulk-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.12));
  color: #2563eb;
}
.store-bulk-icon svg { width: 22px; height: 22px; }

.store-bulk-text {
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #475569;
  letter-spacing: -0.01em;
}
.store-bulk-text strong {
  color: #0f172a;
  font-weight: 800;
}

.store-bulk-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 3px 12px rgba(37, 99, 235, 0.22);
  white-space: nowrap;
}
.store-bulk-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}
.store-bulk-link svg {
  transition: transform 200ms ease;
}
.store-bulk-link:hover svg { transform: translateX(3px); }

@media (max-width: 720px) {
  .store-bulk-notice {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px;
    gap: 14px;
  }
  .store-bulk-link { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   BLOG (네이버 블로그 자동 동기화)
   ══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 880px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1),
              box-shadow 320ms cubic-bezier(.2,.7,.2,1),
              border-color 320ms ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.14);
}

.blog-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #e0e9ff 0%, #ede9fe 100%);
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }

.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  opacity: 0.35;
}

.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.7rem;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: -0.01em;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  max-width: calc(100% - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-card-body h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-body p {
  margin: 0;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-date {
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.blog-loading, .blog-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #94a3b8;
  font-size: 0.9rem;
}
.blog-error a {
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}

.blog-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.blog-cta-row .btn-ghost {
  padding: 12px 24px;
  font-size: 0.88rem;
}

/* ══════════════════════════════════════════
   CONTACT US + 구글지도
   ══════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(180deg, transparent 0%, rgba(99, 120, 220, 0.04) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  margin-top: 40px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  padding: 32px 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 228, 255, 0.9);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(99, 120, 220, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-icon.icon-blue   { background: rgba(59,130,246,0.1);  color: #2563eb; }
.contact-info-icon.icon-purple { background: rgba(139,92,246,0.1);  color: #7c3aed; }
.contact-info-icon.icon-green  { background: rgba(16,185,129,0.1);  color: #059669; }
.contact-info-icon.icon-orange { background: rgba(234,88,12,0.1);   color: #c2410c; }

.contact-info-row strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-info-row span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.contact-cta {
  margin-top: auto;
  justify-content: center;
  padding: 14px 22px;
  font-size: 0.92rem;
}

.contact-map {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(215, 228, 255, 0.9);
  background: #fff;
  box-shadow: 0 4px 20px rgba(99, 120, 220, 0.08);
  min-height: 380px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ══════════════════════════════════════════
   푸터 (기업형)
   ══════════════════════════════════════════ */
.site-footer {
  margin-top: 40px;
  padding: 44px 0 36px;
  background: rgba(15, 23, 42, 0.97);
  position: relative;
  z-index: 1;
  color: #cbd5e1;
}

.site-footer .c { text-align: center; }

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  margin-bottom: 22px;
}
.footer-top a {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e2e8f0;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color 180ms ease;
}
.footer-top a:hover { color: #60a5fa; }
.footer-divider {
  color: #475569;
  font-size: 0.8rem;
}

.footer-info p {
  margin: 6px 0;
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.7;
  letter-spacing: -0.005em;
}

.footer-copy {
  margin: 18px 0 0;
  font-size: 0.76rem;
  color: #64748b;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════
   반응형 미세 조정
   ══════════════════════════════════════════ */
@media (max-width: 720px) {
  .hero-corp { padding: 110px 0 40px; }
  .corp-section { padding: 56px 0; }
  .section-headline { font-size: 1.35rem; }
  .about-card { padding: 22px 20px; }
  .business-card-body { padding: 20px; }
  .contact-info-card { padding: 24px 22px; }
}
