/* ============================================================
   landing.css - 완전 독립 랜딩페이지 전용 스타일
   ============================================================ */

/* ── 기본 리셋 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lp-body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0000;
  color: #e8e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── 네비게이션 ── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 68, 68, 0.2);
  height: 64px;
}

.lp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #ff4444;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.lp-logo i { font-size: 22px; }
.lp-logo:hover { color: #ff6b6b; }

.lp-nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  flex: 1;
}
.lp-nav-links li a {
  color: #c0a0a0;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.lp-nav-links li a:hover {
  color: #fff;
  background: rgba(255, 68, 68, 0.15);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.lp-nav-login {
  color: #c0a0a0;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,68,68,0.3);
  transition: all 0.2s;
  white-space: nowrap;
}
.lp-nav-login:hover { color: #fff; border-color: #ff4444; }

.lp-nav-shop {
  background: #ff4444;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.lp-nav-shop:hover { background: #ff6b6b; transform: translateY(-1px); }
.lp-nav-shop i { margin-right: 5px; }

/* 햄버거 버튼 */
.lp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.lp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8e0e0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── 히어로 ── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0000 0%, #1a0505 50%, #0d0000 100%);
  text-align: center;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,68,68,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(180,0,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── 영업 상태 배너 ── */
.lp-shop-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.lp-shop-open {
  background: rgba(52, 211, 153, 0.15);
  border: 2px solid rgba(52, 211, 153, 0.6);
  color: #34d399;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.25);
}
.lp-shop-closed {
  background: rgba(239, 68, 68, 0.15);
  border: 2px solid rgba(239, 68, 68, 0.6);
  color: #f87171;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}
.lp-shop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-shop-open .lp-shop-dot {
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.3);
  animation: lp-dot-pulse-green 1.8s infinite;
}
.lp-shop-closed .lp-shop-dot {
  background: #f87171;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
  animation: lp-dot-pulse-red 1.8s infinite;
}
@keyframes lp-dot-pulse-green {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.3); }
  50%       { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.1); }
}
@keyframes lp-dot-pulse-red {
  0%, 100% { box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3); }
  50%       { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0.1); }
}

.lp-hero-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lp-badge.red   { background: rgba(255,68,68,0.2);  color: #ff6b6b;  border: 1px solid rgba(255,68,68,0.4); }
.lp-badge.green { background: rgba(52,211,153,0.15); color: #34d399;  border: 1px solid rgba(52,211,153,0.4); }
.lp-badge.blue  { background: rgba(96,165,250,0.15); color: #60a5fa;  border: 1px solid rgba(96,165,250,0.4); }

.lp-hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.lp-hero-sub {
  display: block;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  color: #ff4444;
  margin-top: 8px;
  letter-spacing: 0;
}

.lp-hero-desc {
  font-size: 16px;
  color: #b09090;
  margin-bottom: 32px;
  line-height: 1.8;
  text-align: center;
}

.lp-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,68,68,0.2);
  border-radius: 12px;
  padding: 16px 24px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.lp-stat { text-align: center; padding: 0 24px; }
.lp-stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #ff4444;
  line-height: 1.2;
}
.lp-stat-label {
  display: block;
  font-size: 12px;
  color: #907070;
  margin-top: 2px;
}
.lp-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,68,68,0.2);
}

.lp-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff4444;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.lp-btn-primary:hover { background: #ff6b6b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,68,68,0.4); }
.lp-btn-primary.large { padding: 15px 36px; font-size: 16px; }

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid rgba(251,191,36,0.4);
  transition: all 0.2s;
}
.lp-btn-secondary:hover { background: rgba(251,191,36,0.25); transform: translateY(-2px); }

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #e8e0e0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.lp-btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.lp-btn-ghost.large { padding: 15px 36px; font-size: 16px; }

.lp-hero-emblem {
  display: none;
}

/* ── 신뢰 바 ── */
.lp-trust-bar {
  background: rgba(255,68,68,0.06);
  border-top: 1px solid rgba(255,68,68,0.15);
  border-bottom: 1px solid rgba(255,68,68,0.15);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #b09090;
  padding: 6px 24px;
  white-space: nowrap;
}
.lp-trust-item i { color: #ff4444; }
.lp-trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,68,68,0.2);
}

/* ── 섹션 공통 ── */
.lp-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-section-dark {
  max-width: 100%;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,68,68,0.1);
  border-bottom: 1px solid rgba(255,68,68,0.1);
  padding: 80px 40px;
}
.lp-section-dark .lp-steps {
  max-width: 1200px;
  margin: 0 auto;
}
.lp-section-dark .lp-section-header {
  max-width: 1200px;
  margin: 0 auto 48px;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.lp-section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.lp-section-desc {
  font-size: 16px;
  color: #907070;
}

/* ── 서비스 그리드 ── */
.lp-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,68,68,0.15);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s;
  text-align: center;
}
.lp-service-card:hover {
  border-color: rgba(255,68,68,0.4);
  background: rgba(255,68,68,0.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.lp-service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.lp-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.lp-service-card p {
  font-size: 13px;
  color: #907070;
  line-height: 1.6;
  margin-bottom: 16px;
}
.lp-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff4444;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: gap 0.2s;
}
.lp-service-link:hover { gap: 10px; }

/* ── 구매 단계 ── */
.lp-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.lp-step {
  text-align: center;
  padding: 32px 40px;
  flex: 1;
  min-width: 180px;
  max-width: 260px;
}
.lp-step-num {
  font-size: 13px;
  font-weight: 700;
  color: #ff4444;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.lp-step-icon {
  font-size: 36px;
  color: #fff;
  margin-bottom: 14px;
}
.lp-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.lp-step p {
  font-size: 13px;
  color: #907070;
  line-height: 1.7;
}
.lp-step-arrow {
  color: rgba(255,68,68,0.4);
  font-size: 20px;
  flex-shrink: 0;
}

/* ── 혜택 그리드 ── */
.lp-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lp-benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,68,68,0.12);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
}
.lp-benefit-card:hover {
  border-color: rgba(255,68,68,0.3);
  transform: translateY(-3px);
}
.lp-benefit-card > i {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}
.lp-benefit-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.lp-benefit-card p {
  font-size: 13px;
  color: #907070;
  line-height: 1.7;
}

/* ── CTA ── */
.lp-cta {
  position: relative;
  text-align: center;
  padding: 100px 40px;
  background: linear-gradient(135deg, #150000 0%, #200505 100%);
  border-top: 1px solid rgba(255,68,68,0.2);
  overflow: hidden;
}
.lp-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,68,68,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-cta h2 {
  position: relative;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.lp-cta p {
  position: relative;
  font-size: 16px;
  color: #907070;
  margin-bottom: 36px;
}
.lp-cta-btns {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 푸터 ── */
.lp-footer {
  background: #060000;
  border-top: 1px solid rgba(255,68,68,0.15);
  padding: 40px 40px;
}
.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.lp-footer-brand { display: flex; flex-direction: column; gap: 6px; }
.lp-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #ff4444;
}
.lp-logo-text i { margin-right: 6px; }
.lp-footer-brand p { font-size: 13px; color: #605050; }
.lp-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.lp-footer-links a {
  color: #705050;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.lp-footer-links a:hover { color: #c09090; }
.lp-footer-copy {
  font-size: 12px;
  color: #503030;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ── 스크롤 애니메이션 ── */
.lp-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lp-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   반응형 - 1024px
   ======================================== */
@media (max-width: 1024px) {
  .lp-service-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-hero-emblem { font-size: 140px; }
}

/* ========================================
   반응형 - 768px
   ======================================== */
@media (max-width: 768px) {
  /* nav */
  .lp-nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,0,0,0.98);
    border-bottom: 1px solid rgba(255,68,68,0.2);
    padding: 12px 0;
    gap: 0;
  }
  .lp-nav-links.open { display: flex; }
  .lp-nav-links li a {
    display: block;
    padding: 12px 24px;
    border-radius: 0;
    font-size: 15px;
  }
  .lp-nav-actions { display: none; }
  .lp-hamburger { display: flex; }

  /* hero */
  .lp-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 50px;
    min-height: auto;
    gap: 0;
  }
  .lp-hero-emblem {
    display: none;
  }
  .lp-hero-stats {
    padding: 14px 16px;
    width: 100%;
    justify-content: center;
  }
  .lp-stat { padding: 0 16px; }
  .lp-stat-num { font-size: 22px; }

  /* trust bar */
  .lp-trust-bar {
    padding: 12px 16px;
    gap: 4px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .lp-trust-divider { display: none; }
  .lp-trust-item { font-size: 12px; padding: 4px 12px; }

  /* section */
  .lp-section { padding: 60px 20px; }
  .lp-section-dark { padding: 60px 20px; }

  .lp-service-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .lp-benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* steps */
  .lp-steps { flex-direction: column; gap: 0; }
  .lp-step-arrow { transform: rotate(90deg); }
  .lp-step { padding: 24px 20px; max-width: 100%; width: 100%; }

  /* cta */
  .lp-cta { padding: 60px 24px; }
  .lp-cta-btns { flex-direction: column; align-items: center; }
  .lp-btn-primary.large, .lp-btn-ghost.large { width: 100%; justify-content: center; }

  /* footer */
  .lp-footer { padding: 32px 20px; }
  .lp-footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ========================================
   반응형 - 480px
   ======================================== */
@media (max-width: 480px) {
  .lp-service-grid { grid-template-columns: 1fr; }
  .lp-benefit-grid { grid-template-columns: 1fr; }

  .lp-hero-title { font-size: 34px; }
  .lp-hero-desc { font-size: 14px; }
  .lp-hero-btns { flex-direction: column; }
  .lp-btn-primary, .lp-btn-secondary { width: 100%; justify-content: center; }

  .lp-hero-stats {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  .lp-stat-divider { width: 60px; height: 1px; }

  .lp-section-title { font-size: 24px; }
  .lp-service-card { padding: 22px 16px; }
}

/* ── 히어로 축소 버전 ── */
.lp-hero-compact {
  min-height: auto;
  padding: 60px 40px 50px;
}

/* ── 가격표 섹션 ── */
.lp-price-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.lp-price-group {
  margin-bottom: 48px;
}

.lp-price-cat {
  font-size: 13px;
  font-weight: 700;
  color: #ff4444;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,68,68,0.2);
}

.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.lp-price-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,68,68,0.15);
  border-radius: 12px;
  padding: 20px 18px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-price-card:hover {
  border-color: rgba(255,68,68,0.45);
  background: rgba(255,68,68,0.06);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.lp-price-badge {
  display: inline-block;
  background: #ff4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 4px;
  width: fit-content;
  letter-spacing: 0.5px;
}

.lp-price-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.lp-price-desc {
  font-size: 12px;
  color: #7a6060;
  line-height: 1.5;
  margin: 0;
}

.lp-price-amount {
  font-size: 20px;
  font-weight: 800;
  color: #ff4444;
  margin-top: 6px;
}

.lp-price-text {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: #e0e0e0;
  font-family: inherit;
  font-size: 25px;
  line-height: 2.2;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.lp-bottom-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0 16px 20px;
}

.lp-price-empty {
  text-align: center;
  padding: 60px 20px;
  color: #504040;
}
.lp-price-empty i {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}
.lp-price-empty p {
  font-size: 15px;
}

@media (max-width: 768px) {
  .lp-hero-compact { padding: 40px 20px 36px; }
  .lp-price-section { padding: 40px 16px 60px; }
  .lp-price-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
  .lp-price-card { padding: 16px 14px; }
  .lp-price-amount { font-size: 17px; }
}

@media (max-width: 480px) {
  .lp-price-grid { grid-template-columns: 1fr 1fr; }
}
