/* =====================================================
   VMCOMPANY — 퍼스널 마케팅 랜딩페이지
   디자인: 블랙레드 그라데이션 / 미니멀 / Impact 히어로
   ===================================================== */

/* ---------- 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', sans-serif;
  background: #080808;
  color: #e8e8e8;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ---------- 공통 유틸 ---------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.red-text { color: #e03030; }
.hidden { display: none !important; }

/* ---------- FADE IN 애니메이션 ---------- */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: #e03030;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
  text-align: center;
}
.section-title {
  font-family: 'Bebas Neue', 'Noto Sans KR', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f2f2f2;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  text-align: center;
}
.section-desc {
  color: #aaa;
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.8;
  text-align: center;
}

/* =====================================================
   NAVBAR
   ===================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.98);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.virus-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 6px rgba(224,48,48,0.6));
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #e8302a;  /* 레드 컬러 */
  text-shadow: 0 0 14px rgba(232,48,42,0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  color: #ccc;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-link.nav-highlight {
  background: #e03030;
  color: #fff;
  padding: 6px 14px;
  border-radius: 5px;
  font-weight: 700;
}
.nav-link.nav-highlight:hover { background: #c0392b; }

/* nav-contact 삭제됨 */

/* 햄버거 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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); }

/* 모바일 메뉴 */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(8,8,8,0.98);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  color: #ccc;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover, .mobile-link.highlight { color: #e03030; font-weight: 700; }
/* mobile-contact 삭제됨 */

/* =====================================================
   HERO — 넷플릭스 스타일 사선 타일 콜라주 + 중앙 텍스트
   ===================================================== */

/* ─── 섹션 래퍼 ─────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060606;
}

/* ─── 타일 배경: 3행 × 14컬럼, 사선 배치 ─── */
.hero-tiles {
  position: absolute;
  top: 35%;
  left: -20%;
  right: -20%;
  transform: translateY(-50%) skewY(-7deg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

/* 각 행: 가로로 로고 나열 */
.ht-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

/* 2번 행 — 오른쪽으로 밀어 사선 엇갈림 */
.ht-row-shift {
  transform: translateX(75px);
}

/* 3번 행 — 더 오른쪽으로 밀어 깊이감 */
.ht-row-shift2 {
  transform: translateX(150px);
}

/* ───────────────────────────────────────────────────
   각 셀: 누끼 투명 PNG — 배경 없이 로고만 떠있게
─────────────────────────────────────────────────── */
.ht-cell {
  flex: 0 0 auto;
  width: 130px;
  height: 130px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: transparent !important;
  box-shadow: none;
  /* 셀 전체에 어둡고 절제된 필터로 배경에 녹아들게 */
  filter: brightness(0.38) saturate(0.5) contrast(1.05);
}

/* 누끼 PNG — 셀 filter가 어둠을 제어, blend 불필요 */
.ht-img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
  filter: none;
  padding: 0;
}

/* SVG 로고 (인라인): 동일 크기 */
.ht-svg {
  width: 108px;
  height: 108px;
  display: block;
  margin: 0 auto;
  filter: none;
}

/* 라벨 숨김 */
.ht-label { display: none; }

/* ─── 오버레이: 워딩 선명 + 로고 배경 어둡게 ─── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* 상단 완전 블랙 */
    linear-gradient(to bottom, rgba(4,4,4,0.98) 0%, rgba(4,4,4,0.3) 10%, transparent 25%),
    /* 하단 완전 블랙 */
    linear-gradient(to top, rgba(4,4,4,0.98) 0%, rgba(4,4,4,0.3) 12%, transparent 28%),
    /* 중앙 텍스트 영역 — 워딩 가독성을 위한 어두운 타원 */
    radial-gradient(ellipse 65% 60% at 50% 50%, rgba(4,4,4,0.88) 0%, rgba(4,4,4,0.65) 40%, rgba(4,4,4,0.2) 70%, transparent 88%),
    /* 전체 베이스 어둠 */
    linear-gradient(rgba(4,4,4,0.5), rgba(4,4,4,0.5));
}

/* ─── 히어로 텍스트 블록: 가운데 ─── */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 40px 40px 120px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 400;
}

/* 메인 제목: 굵고 크게, 전부 흰 글씨 */
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.8rem, 9.5vw, 8rem);
  line-height: 1.0;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 28px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.95), 0 0 60px rgba(0,0,0,0.6);
}

/* "구독하세요." — 레드 포인트 */
.hero-accent {
  color: #e8302a;
  text-shadow: 0 0 40px rgba(232,48,42,0.65);
}

/* 부제목 */
.hero-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 42px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
  word-break: keep-all;
}

/* ─── CTA 버튼 2개: 빨강 + 노랑 ─────────────────────── */
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* 월 구독 플랜 보기 — 빨간 버튼 */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8302a;
  color: #ffffff;
  padding: 17px 48px;
  border-radius: 5px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(232,48,42,0.6), 0 0 0 1px rgba(232,48,42,0.3);
}
.btn-hero-primary:hover {
  background: #c5201a;
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(232,48,42,0.7);
}

/* 카카오 상담하기 — 노란 버튼 */
.btn-hero-kakao {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #FEE500;
  color: #191919;
  padding: 17px 38px;
  border-radius: 5px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Noto Sans KR', sans-serif;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 22px rgba(254,229,0,0.4);
}
.btn-hero-kakao:hover {
  background: #e8d000;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(254,229,0,0.55);
}

/* ─── 다른 섹션에서 사용하는 버튼 유지 ─────────────── */
.btn-primary {
  background: #e03030;
  color: #fff;
  padding: 13px 30px;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-block;
}
.btn-primary:hover { background: #c0392b; transform: translateY(-2px); }

.btn-kakao {
  background: #FEE500;
  color: #191919;
  padding: 13px 26px;
  border-radius: 5px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-kakao:hover { background: #e8d000; transform: translateY(-2px); }

/* ─── 스크롤 힌트 ──────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 1.1rem;
  z-index: 3;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ─── 반응형 ──────────────────────────────────────── */
@media (max-width: 860px) {
  .ht-cell { width: 120px; height: 80px; }
  .ht-img, .ht-img-dark { width: 84px; height: 52px; }
  /* 모바일: 콘텐츠를 위쪽으로 붙이고 내비 아래 패딩만 확보 */
  #hero { align-items: flex-start; }
  .hero-content { padding: 72px 24px 60px; }
  .hero-title   { font-size: clamp(3rem, 11vw, 5.5rem); }
}
@media (max-width: 540px) {
  .ht-cell { width: 100px; height: 66px; }
  .ht-img, .ht-img-dark { width: 70px; height: 44px; }
  .ht-row-shift  { transform: translateX(60px); }
  .ht-row-shift2 { transform: translateX(120px); }
  #hero { align-items: flex-start; }
  /* 소형 모바일: 내비 높이(60px) + 여백 12px */
  .hero-content { padding: 72px 20px 50px; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-hero-primary,
  .btn-hero-kakao { justify-content: center; text-align: center; }
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  /* 소셜 가격 그리드: 1열 */
  .social-price-grid { grid-template-columns: 1fr; }
}
}

/* ── 구버전 hd-card 스타일 제거됨 (hero-tiles 로 교체) ── */

/* =====================================================
   WHY VMCOMPANY
   ===================================================== */
.section-why {
  background: #0d0d0d;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  text-align: left;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: rgba(224,48,48,0.4);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 1.6rem;
  color: #e03030;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: #999; line-height: 1.7; }

/* =====================================================
   월 구독 플랜
   ===================================================== */
.section-plan { background: #080808; text-align: center; }

.plan-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.toggle-btn {
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #aaa;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Noto Sans KR', sans-serif;
}
.toggle-btn.active, .toggle-btn:hover {
  background: #e03030;
  border-color: #e03030;
  color: #fff;
}

.plan-content { animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

.plan-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.plan-tag {
  background: rgba(224,48,48,0.15);
  color: #e03030;
  border: 1px solid rgba(224,48,48,0.3);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}
.online-tag { background: rgba(48,100,224,0.15); color: #4a90ff; border-color: rgba(74,144,255,0.3); }
.branding-tag { background: rgba(180,100,20,0.15); color: #f0a020; border-color: rgba(240,160,32,0.3); }
.plan-total-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.price-original {
  color: #666;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: line-through;
}
.price-arrow {
  color: #555;
  font-size: 0.85rem;
}
.price-discounted {
  color: #f2f2f2;
  font-size: 1.1rem;
  font-weight: 700;
}
.price-discount-badge {
  background: rgba(224,48,48,0.2);
  border: 1px solid rgba(224,48,48,0.4);
  color: #e03030;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.plan-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; max-width: 700px; margin-left: auto; margin-right: auto; }

.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.plan-card:hover { border-color: rgba(224,48,48,0.3); }

.plan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.plan-card-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.plan-card-title i, .plan-card-title svg { font-size: 1.3rem; color: #e03030; flex-shrink: 0; width: 24px; text-align: center; }
.plan-card-title h3 { font-size: 1rem; font-weight: 700; color: #f2f2f2; }
.plan-price { font-size: 0.82rem; color: #e03030; font-weight: 600; margin-top: 2px; display: block; }

.accordion-icon {
  color: #666;
  font-size: 0.85rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-icon.open { transform: rotate(180deg); color: #e03030; }

.plan-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.plan-card-body.open {
  max-height: 400px;
  padding: 0 24px 20px;
}
.plan-card-body ul li {
  font-size: 0.88rem;
  color: #bbb;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.plan-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 5px; height: 5px;
  background: #e03030;
  border-radius: 50%;
}

.plan-note {
  font-size: 0.83rem;
  color: #888;
  line-height: 1.7;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid #e03030;
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.plan-note i { color: #e03030; margin-right: 6px; }

.btn-plan-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEE500;
  color: #191919;
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-plan-cta:hover { background: #e8d000; transform: translateY(-2px); }

/* 온라인 서브 토글 */
.online-sub-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
}
.sub-toggle-btn {
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: #aaa;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: -0.01em;
}
.sub-toggle-btn.active, .sub-toggle-btn:hover {
  background: rgba(224,48,48,0.15);
  border-color: #e03030;
  color: #fff;
}

/* ── 등급 탭 (BASIC / STANDARD / PREMIUM) ─────────── */
.grade-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.grade-tab {
  padding: 9px 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #888;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: 0.04em;
}
.grade-tab:hover {
  background: rgba(224,48,48,0.1);
  border-color: rgba(224,48,48,0.4);
  color: #ddd;
}
.grade-tab.active {
  background: rgba(224,48,48,0.18);
  border-color: #e03030;
  color: #fff;
  box-shadow: 0 0 12px rgba(224,48,48,0.2);
}

/* ── 정상가/할인가 합계 요약 바 ─────────────────── */
.plan-price-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 24px;
  max-width: 700px;
  padding: 16px 24px;
  background: rgba(224,48,48,0.06);
  border: 1px solid rgba(224,48,48,0.2);
  border-radius: 10px;
}
.summary-label {
  font-size: 0.82rem;
  color: #777;
  font-weight: 500;
}
.summary-original {
  font-size: 0.92rem;
  color: #555;
  text-decoration: line-through;
  font-weight: 500;
}
.summary-arrow {
  color: #555;
  font-size: 0.9rem;
}
.summary-discounted {
  font-size: 1.15rem;
  font-weight: 800;
  color: #e03030;
}

/* =====================================================
   마케팅 유형
   ===================================================== */
.section-types { background: #0a0a0a; text-align: center; }
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: left;
}
.type-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.type-card:hover {
  border-color: rgba(224,48,48,0.35);
  transform: translateY(-4px);
}
.type-icon {
  height: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1.6rem;
  color: #e03030;
}
.type-card h3 { font-size: 1rem; font-weight: 700; color: #f0f0f0; margin-bottom: 10px; }
.type-card p { font-size: 0.85rem; color: #999; line-height: 1.7; }

/* =====================================================
   개별 가격
   ===================================================== */
.section-price { background: #080808; text-align: center; }

.price-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.price-tab {
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: #aaa;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Noto Sans KR', sans-serif;
}
.price-tab.active, .price-tab:hover {
  background: rgba(224,48,48,0.12);
  border-color: #e03030;
  color: #e03030;
}

.price-content { animation: fadeUp 0.4s ease; }

.price-table-wrap { overflow-x: auto; max-width: 760px; margin: 0 auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.price-table th {
  text-align: left;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  color: #999;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #ccc;
  vertical-align: middle;
}
.price-cell { color: #f2f2f2; font-weight: 700; }

.tier-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ddd;
}
.tier-badge.plus { background: rgba(224,48,48,0.12); color: #e87070; }
.tier-badge.premium { background: rgba(224,48,48,0.2); color: #e03030; }
.tier-badge.special { background: rgba(224,48,48,0.3); color: #ff6060; }

/* 숏츠 패키지 카드 */
.price-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.price-package-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s;
}
.price-package-card:hover { border-color: rgba(224,48,48,0.4); }
.price-package-card.featured {
  border-color: #e03030;
  background: rgba(224,48,48,0.06);
}
.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #e03030;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
}
.price-package-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #f2f2f2;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.package-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e03030;
  margin-bottom: 20px;
}
.price-package-card ul { display: flex; flex-direction: column; gap: 8px; }
.price-package-card ul li {
  font-size: 0.85rem;
  color: #aaa;
  padding-left: 14px;
  position: relative;
}
.price-package-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 4px;
  background: #e03030;
  border-radius: 50%;
}

/* =====================================================
   소셜미디어 가격표
   ===================================================== */
.social-intro-note {
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 13px 20px;
  background: rgba(224,48,48,0.07);
  border: 1px solid rgba(224,48,48,0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.7;
  text-align: center;
}
.social-intro-note i { color: #e03030; margin-right: 6px; }
.social-intro-note strong { color: #f2f2f2; }

.social-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 28px;
}

.social-price-platform {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.social-price-platform:hover {
  border-color: rgba(224,48,48,0.35);
  transform: translateY(-3px);
}

.social-platform-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.instagram-header { background: linear-gradient(135deg, rgba(193,53,132,0.18) 0%, rgba(253,92,99,0.12) 50%, rgba(252,175,69,0.1) 100%); }
.youtube-header   { background: rgba(255,0,0,0.10); }
.threads-header   { background: rgba(255,255,255,0.05); }
.twitter-header   { background: rgba(29,161,242,0.10); }
.tiktok-header    { background: linear-gradient(135deg, rgba(0,242,234,0.10) 0%, rgba(254,44,85,0.10) 100%); }
.facebook-header  { background: rgba(24,119,242,0.10); }

.social-platform-header > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-platform-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(1.1) saturate(1.2);
  flex-shrink: 0;
}
.social-platform-name {
  font-size: 1rem;
  font-weight: 700;
  color: #f0f0f0;
  font-family: 'Noto Sans KR', sans-serif;
  display: block;
}
.social-platform-sub {
  font-size: 0.72rem;
  color: #777;
  letter-spacing: 0.03em;
  display: block;
}

.social-price-table-wrap {
  padding: 0 2px 4px;
}
.social-price-table-wrap .price-table {
  font-size: 0.82rem;
}
.social-price-table-wrap .price-table th {
  font-size: 0.72rem;
  padding: 9px 14px;
  text-align: center;
}
.social-price-table-wrap .price-table td {
  padding: 10px 14px;
  font-size: 0.82rem;
  vertical-align: middle;
  text-align: center;
}
.social-price-table-wrap .price-table td:last-child {
  text-align: left;
}

/* 서비스 유형 배지 */
.svc-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid;
}
.svc-badge.like    { background: rgba(224,48,48,0.12); border-color: rgba(224,48,48,0.3); color: #f08080; }
.svc-badge.follow  { background: rgba(100,160,255,0.12); border-color: rgba(100,160,255,0.3); color: #90b8ff; }
.svc-badge.comment { background: rgba(160,100,255,0.12); border-color: rgba(160,100,255,0.3); color: #c090ff; }
.svc-badge.view    { background: rgba(80,200,120,0.12); border-color: rgba(80,200,120,0.3); color: #80d8a0; }
.svc-badge.share   { background: rgba(255,180,50,0.12); border-color: rgba(255,180,50,0.3); color: #ffcc70; }

/* 지역 구분 배지 */
.region-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.region-badge.kr     { background: rgba(0,70,160,0.25); color: #88aaff; border: 1px solid rgba(0,70,160,0.4); }
.region-badge.global { background: rgba(40,140,80,0.2);  color: #80e0a0; border: 1px solid rgba(40,140,80,0.35); }
.region-badge.mixed  { background: rgba(200,140,20,0.2); color: #f0c060; border: 1px solid rgba(200,140,20,0.35); }
.region-badge.special{ background: rgba(200,80,200,0.2); color: #e090e0; border: 1px solid rgba(200,80,200,0.35); }

/* 서비스 설명 */
.svc-desc {
  font-size: 0.78rem !important;
  color: #888 !important;
  text-align: left !important;
  line-height: 1.5;
}

.social-price-note {
  text-align: center;
  font-size: 0.82rem;
  color: #777;
  margin-top: 8px;
  line-height: 1.7;
}
.social-price-note i { color: #e03030; margin-right: 6px; }

/* =====================================================
   성과 사례
   ===================================================== */
.section-cases { background: #0a0a0a; text-align: center; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
}

/* 카드 전체 */
.case-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.case-card:hover {
  border-color: rgba(224,48,48,0.45);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.case-card.highlight-card {
  border-color: rgba(224,48,48,0.45);
  background: rgba(20,6,6,1);
  box-shadow: 0 0 0 1px rgba(224,48,48,0.2);
}

/* 이미지 영역 */
.case-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
}
.case-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.case-card:hover .case-img {
  transform: scale(1.04);
}

/* 유형 뱃지 — 이미지 위 좌상단 */
.case-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(20,20,20,0.82);
  border: 1px solid rgba(224,48,48,0.55);
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.case-type-badge.hot {
  background: rgba(224,48,48,0.85);
  border-color: #e03030;
}

/* 카드 하단 텍스트 영역 */
.case-card-body {
  padding: 20px 22px 22px;
}

/* 수치 행 */
.case-stats {
  display: flex;
  gap: 22px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.case-stat { display: flex; flex-direction: column; }
.case-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: #f2f2f2;
  line-height: 1;
}
.highlight-card .case-num { color: #ff5a50; }
.case-unit { font-size: 0.70rem; color: #888; margin-top: 3px; }
.case-desc { font-size: 0.85rem; color: #aaa; line-height: 1.6; }

/* =====================================================
   영상 제작 사례
   ===================================================== */
.video-cases-wrap {
  margin-top: 20px;
  text-align: center;
}
.video-cases-title {
  font-family: 'Bebas Neue', 'Noto Sans KR', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #f2f2f2;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.video-cases-desc {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.video-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* 숏츠 비율 9:16 유지 */
.video-shorts-wrap {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 세로 비율 */
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}
.video-shorts-wrap iframe,
.video-shorts-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
  object-fit: cover;
}

.video-case-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px;
  transition: border-color 0.3s, transform 0.3s;
}
.video-case-card:hover {
  border-color: rgba(224,48,48,0.35);
  transform: translateY(-4px);
}

.video-case-info {
  text-align: center;
  padding: 0 4px 4px;
}
.video-case-badge {
  display: inline-block;
  background: rgba(224,48,48,0.15);
  border: 1px solid rgba(224,48,48,0.3);
  color: #e03030;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.video-case-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 4px;
  line-height: 1.4;
}
.video-case-sub {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.5;
}

/* 반응형 */
@media (max-width: 760px) {
  .video-cases-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* =====================================================
   대표 채널
   ===================================================== */
.section-channels { background: #080808; text-align: center; }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  text-align: left;
}
.channel-group {}
.channel-group-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e03030;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.channel-group-title i { margin-right: 8px; }
.channel-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.channel-list li {
  font-size: 0.88rem;
  color: #bbb;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.channel-list li:hover { color: #fff; border-color: rgba(224,48,48,0.25); }

/* 채널 전체 리스트 버튼 */
.channel-list-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.channel-list-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s;
  min-width: 260px;
}
.channel-list-btn:hover {
  background: rgba(224,48,48,0.08);
  border-color: rgba(224,48,48,0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(224,48,48,0.12);
}

.channel-list-btn-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(224,48,48,0.15);
  border: 1px solid rgba(224,48,48,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #e03030;
  font-size: 1.2rem;
  transition: background 0.25s;
}
.channel-list-btn:hover .channel-list-btn-icon {
  background: rgba(224,48,48,0.25);
}

.channel-list-btn-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.channel-list-btn-label {
  font-size: 1rem;
  font-weight: 700;
  color: #f0f0f0;
  font-family: 'Noto Sans KR', sans-serif;
}
.channel-list-btn-sub {
  font-size: 0.78rem;
  color: #777;
  transition: color 0.25s;
}
.channel-list-btn:hover .channel-list-btn-sub {
  color: #e03030;
}

/* =====================================================
   Q&A 섹션
   ===================================================== */
.section-qna {
  background: #070707;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.qna-list {
  max-width: 760px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qna-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.qna-item.open {
  border-color: rgba(224,48,48,0.35);
}
.qna-item:hover {
  border-color: rgba(224,48,48,0.2);
}

.qna-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.qna-q {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  flex: 1;
}

.qna-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 28px;
  background: rgba(224,48,48,0.15);
  border: 1px solid rgba(224,48,48,0.3);
  color: #e03030;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: 6px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.qna-q span:last-child {
  font-size: 0.97rem;
  font-weight: 600;
  color: #e8e8e8;
  line-height: 1.5;
}

.qna-icon {
  color: #555;
  font-size: 0.85rem;
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}
.qna-icon.open {
  transform: rotate(180deg);
  color: #e03030;
}

.qna-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.qna-body.open {
  max-height: 300px;
  padding: 0 24px 22px;
}
.qna-body p {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.8;
  padding-left: 52px;
  border-left: 2px solid rgba(224,48,48,0.25);
  padding-top: 2px;
  padding-bottom: 2px;
}

.qna-cta {
  text-align: center;
  margin-top: 8px;
}
.qna-cta p {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 16px;
}

/* =====================================================
   CONTACT CTA
   ===================================================== */
.section-contact {
  background: linear-gradient(135deg, rgba(100,0,0,0.4) 0%, #060606 60%);
  border-top: 1px solid rgba(224,48,48,0.15);
  text-align: center;
}
.contact-desc {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.contact-info-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  font-size: 0.88rem;
  color: #ccc;
  transition: border-color 0.2s, color 0.2s;
}
.contact-chip:hover { border-color: #e03030; color: #fff; }
.contact-chip i { color: #e03030; }

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FEE500;
  color: #191919;
  padding: 16px 42px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(254,229,0,0.25);
}
.btn-cta-large:hover {
  background: #e8d000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(254,229,0,0.35);
}
.contact-footer-note {
  margin-top: 48px;
  font-size: 0.75rem;
  color: #555;
}

/* =====================================================
   플로팅 카카오 버튼
   ===================================================== */
.floating-kakao {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 54px;
  height: 54px;
  background: #FEE500;
  color: #191919;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-kakao:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
  .section-title { font-size: 1.8rem; }
  .cases-grid { grid-template-columns: 1fr; }
  .price-cards-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-kakao { text-align: center; justify-content: center; }
  .plan-summary { flex-direction: column; align-items: flex-start; gap: 8px; }
}
