/* ====== RESET & BASE ====== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0a0f;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

:root {
  --bg-base: #02060f;
  --bg-elev: #061224;
  --bg-card: #0a1828;
  --border: #163052;
  --text: #f0f6ff;
  --text-dim: #8aa3c4;
  --neon: #00b3ff;
  --neon-2: #4fd1ff;
  --neon-deep: #0066ff;
  --purple: #6f4dff;
  --pink: #00e0ff;
  --grad: linear-gradient(135deg, #00b3ff 0%, #4fd1ff 100%);
  --grad-2: linear-gradient(135deg, #0066ff 0%, #00b3ff 100%);
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--grad);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900;
  color: #0a0a0f;
  box-shadow: 0 0 20px rgba(0,179,255,0.4);
}
.logo-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo img { height: 44px; width: auto; display: block; }
.footer-brand img { height: 48px; width: auto; display: block; margin-bottom: 14px; }

.menu { display: flex; gap: 8px; align-items: center; }
.menu a {
  padding: 10px 18px;
  font-size: 15px; font-weight: 600;
  color: var(--text-dim);
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}
.menu a:hover, .menu a.active { color: var(--neon); }
.menu a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 2px;
  width: 0; height: 2px;
  background: var(--neon);
  transition: all 0.25s;
  transform: translateX(-50%);
}
.menu a:hover::after, .menu a.active::after { width: 50%; }

.cta-btn,
.menu a.cta-btn,
.menu.open a.cta-btn {
  padding: 11px 22px;
  background: var(--grad);
  color: #ffffff !important;
  font-weight: 800;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.25s;
  box-shadow: 0 0 18px rgba(0,179,255,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.cta-btn:hover,
.menu a.cta-btn:hover,
.menu.open a.cta-btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0,179,255,0.5);
}

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ====== HERO ====== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 120px 32px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,179,255,0.15) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(111,77,255,0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(79,209,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,179,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,179,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(0,179,255,0.1);
  border: 1px solid rgba(0,179,255,0.3);
  border-radius: 100px;
  font-size: 13px; font-weight: 700;
  color: var(--neon);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 .accent-2 { background: var(--grad-2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p {
  font-size: 18px; color: var(--text-dim);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 30px;
  font-size: 15px; font-weight: 700;
  border-radius: 8px;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--grad);
  color: #0a0a0f;
  box-shadow: 0 8px 32px rgba(0,179,255,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,179,255,0.5); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--neon); color: var(--neon); }

/* Hero visual: event card */
.hero-visual {
  position: relative;
  height: 480px;
}
.event-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: 100%; max-width: 440px;
  background: linear-gradient(145deg, #1a1a25, #14141c);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,179,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.5s;
}
.event-card:hover { transform: translate(-50%, -50%) rotate(0); }
.event-label {
  font-size: 12px; font-weight: 800;
  letter-spacing: 3px;
  color: var(--neon);
  margin-bottom: 16px;
}
.event-title {
  font-size: 44px; font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
}
.event-title .price {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: 64px;
}
.event-sub { color: var(--text-dim); font-size: 15px; margin-bottom: 28px; }
.event-features { display: grid; gap: 12px; }
.event-feat {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
}
.event-feat-icon {
  width: 28px; height: 28px;
  background: var(--grad);
  border-radius: 6px;
  display: grid; place-items: center;
  font-size: 14px;
}
.floating-1, .floating-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}
.floating-1 { width: 200px; height: 200px; background: var(--neon); opacity: 0.25; top: -20px; right: -20px; }
.floating-2 { width: 240px; height: 240px; background: var(--purple); opacity: 0.3; bottom: -40px; left: -40px; }

/* ====== SECTIONS ====== */
section { padding: 100px 32px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 13px; font-weight: 800;
  letter-spacing: 3px;
  color: var(--neon);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-title .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-desc { font-size: 17px; color: var(--text-dim); max-width: 640px; margin: 0 auto; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(0,179,255,0.3); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  background: rgba(0,179,255,0.1);
  border: 1px solid rgba(0,179,255,0.25);
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.feature-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.feature-card p { color: var(--text-dim); font-size: 15px; }

/* Stats */
.stats-section {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-elev) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-dim); font-size: 14px; font-weight: 600; }

/* Process steps */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 24px;
  position: relative;
  transition: all 0.3s;
}
.step:hover { border-color: var(--neon); transform: translateY(-4px); }
.step-num {
  display: inline-block;
  font-size: 36px; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
  line-height: 1;
}
.step h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-dim); }

/* Stores grid */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
}
.store-card:hover { transform: translateY(-6px); border-color: rgba(0,179,255,0.3); }
.store-img {
  height: 180px;
  background: linear-gradient(135deg, #1a1a25, #2a2a38);
  display: grid; place-items: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.store-img::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad);
  opacity: 0.1;
}
.store-info { padding: 24px; }
.store-info h4 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.store-info .store-addr { color: var(--text-dim); font-size: 14px; margin-bottom: 12px; }
.store-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0,179,255,0.1);
  color: var(--neon);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
}

/* CTA section */
.cta-section {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0,179,255,0.08) 0%, transparent 60%);
}
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0,179,255,0.05), transparent, rgba(111,77,255,0.05), transparent);
  animation: spin 12s linear infinite;
  z-index: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; margin-bottom: 14px; letter-spacing: -1px; }
.cta-box p { color: var(--text-dim); margin-bottom: 30px; font-size: 17px; }

/* ====== FOOTER ====== */
.footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 60px 32px 30px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { font-size: 22px; font-weight: 900; margin-bottom: 14px; }
.footer-brand .logo-mark { display: inline-flex; margin-right: 8px; vertical-align: middle; }
.footer-desc { color: var(--text-dim); font-size: 14px; max-width: 360px; }
.footer h5 { font-size: 14px; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: var(--text-dim); font-size: 14px; transition: color 0.2s; }
.footer ul li a:hover { color: var(--neon); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

/* ====== PAGE HEADER (sub pages) ====== */
.page-header {
  padding: 160px 32px 80px;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg-base) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(0,179,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(111,77,255,0.1) 0%, transparent 50%);
}
.page-header > * { position: relative; }
.page-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.page-header h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-header p { color: var(--text-dim); font-size: 17px; }

/* ====== CONTENT BLOCKS ====== */
.content-block { padding: 80px 32px; }
.content-inner { max-width: 1080px; margin: 0 auto; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col h2 { font-size: 34px; font-weight: 900; margin-bottom: 20px; letter-spacing: -1px; }
.two-col h2 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.two-col p { color: var(--text-dim); font-size: 16px; margin-bottom: 14px; }
.visual-block {
  height: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: grid; place-items: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
}
.visual-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(0,179,255,0.15), transparent 70%);
}

/* Contact info table */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.contact-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.contact-item .ic { font-size: 28px; margin-bottom: 12px; }
.contact-item h5 { font-size: 14px; color: var(--text-dim); margin-bottom: 6px; font-weight: 600; }
.contact-item .val { font-size: 17px; font-weight: 800; }

/* Real map image */
.map-real {
  position: relative;
  width: 100%;
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,179,255,0.08);
  background: var(--bg-card);
}
.map-real img {
  width: 100%;
  height: auto;
  display: block;
}
.map-overlay {
  position: absolute;
  top: 20px; left: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(2,6,15,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,179,255,0.3);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  max-width: 360px;
}
.map-overlay-pin {
  font-size: 28px;
  filter: drop-shadow(0 0 8px rgba(0,179,255,0.6));
}
.map-actions {
  position: absolute;
  bottom: 20px; right: 20px;
  display: flex;
  gap: 10px;
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(2,6,15,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,179,255,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.25s;
  text-decoration: none;
}
.map-btn:hover {
  background: var(--grad);
  color: #02060f;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,179,255,0.4);
}
@media (max-width: 720px) {
  /* 모바일에서는 본사 주소 오버레이 배너 숨김 */
  .map-overlay { display: none; }
  .map-actions { bottom: 12px; right: 12px; left: 12px; justify-content: center; }
  .map-btn { padding: 10px 14px; font-size: 12px; flex: 1; justify-content: center; }
}

/* Legacy map placeholder */
.map-box {
  width: 100%;
  height: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: grid; place-items: center;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.map-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,179,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,179,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}
.map-pin .pin-icon {
  width: 60px; height: 60px;
  background: var(--grad);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 16px;
  box-shadow: 0 0 30px rgba(0,179,255,0.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-12px); }
}

/* Pricing table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.price-card.featured {
  border-color: var(--neon);
  box-shadow: 0 0 30px rgba(0,179,255,0.15);
}
.price-card.featured::before {
  content: 'BEST';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #0a0a0f;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 900;
  letter-spacing: 1px;
}
.price-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.price-card .price {
  font-size: 38px; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 16px 0;
}
.price-card .price small { font-size: 14px; color: var(--text-dim); -webkit-text-fill-color: var(--text-dim); }
.price-card ul { text-align: left; margin-top: 20px; }
.price-card ul li {
  padding: 8px 0;
  color: var(--text-dim);
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.price-card ul li::before {
  content: '✓';
  color: var(--neon);
  font-weight: 900;
}

/* ====== FULL-SCREEN VIDEO HERO ====== */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg-base);
}
.video-hero video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  background: var(--bg-base);
}
.video-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,6,15,0.55) 0%, rgba(2,6,15,0.35) 40%, rgba(2,6,15,0.85) 100%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(2,6,15,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.video-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 32px 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.video-hero .hero-badge {
  margin-bottom: 28px;
  background: rgba(0,179,255,0.15);
  backdrop-filter: blur(8px);
  border-color: rgba(0,179,255,0.4);
}
.video-hero h1 {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.video-hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.video-hero p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 640px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.video-hero .hero-actions { justify-content: center; }
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: scrollHint 2s ease-in-out infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
}
@keyframes scrollHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}
@media (max-width: 720px) {
  .video-hero { min-height: 520px; height: 90vh; }
  .video-hero-content { padding: 90px 20px 60px; }
}

/* ====== BANNER SECTIONS (full-width images) ====== */
.banner-section {
  padding: 0;
  position: relative;
  background: var(--bg-base);
}
.banner-section .banner-wrap {
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
}
.banner-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.banner-hero {
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.banner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(0,179,255,0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0,102,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.banner-with-text {
  padding: 80px 32px;
}
.banner-with-text .banner-wrap {
  background: linear-gradient(180deg, transparent, rgba(0,179,255,0.04));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,179,255,0.08);
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 420px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
/* ====== Equipment section mobile text adjustments ====== */
@media (max-width: 720px) {
  .equipment-title {
    font-size: 24px !important;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }
  .equipment-desc .desc-prefix { display: none; }
  .equipment-desc { font-size: 14px; white-space: nowrap; }
}
@media (min-width: 721px) {
  .equipment-desc .desc-prefix { display: inline; }
}

/* ====== Stores section mobile text adjustments ====== */
@media (max-width: 720px) {
  .stores-title {
    font-size: 22px !important;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }
  .stores-desc { display: none; }
}

/* ====== Mobile-only banner (PC에서는 숨김) ====== */
.mobile-only-banner { display: none; }
@media (max-width: 720px) {
  .mobile-only-banner {
    display: block;
    padding: 24px 20px 0;
    background: var(--bg-base);
  }
  .mobile-banner-wrap {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,179,255,0.15);
    border: 1px solid var(--border);
  }
  .mobile-banner-wrap img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ====== Process section mobile text adjustments ====== */
@media (max-width: 720px) {
  .process-desc {
    font-size: 13px !important;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }
}

/* ====== CTA section mobile text adjustments ====== */
@media (max-width: 720px) {
  .cta-box h2.cta-title {
    font-size: 22px !important;
    letter-spacing: -0.5px;
    line-height: 1.3;
  }
  .cta-line1 {
    white-space: nowrap;
    display: inline-block;
  }
}

/* ====== Franchise page mobile - all texts one line ====== */
@media (max-width: 720px) {
  .franchise-page .page-header h1 {
    font-size: 32px !important;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }
  .franchise-page .page-header p {
    font-size: 13px !important;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }
  .franchise-page .section-title {
    font-size: 22px !important;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }
  .franchise-page .section-desc {
    font-size: 12px !important;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }
  /* CTA on franchise page */
  .franchise-page .cta-box h2 {
    font-size: 22px !important;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }
  .franchise-page .cta-box p {
    font-size: 13px !important;
    white-space: nowrap;
  }
}

/* ====== Location page mobile - all texts one line ====== */
@media (max-width: 720px) {
  .location-page .page-header h1 {
    font-size: 32px !important;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }
  .location-page .page-header p {
    font-size: 13px !important;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }
  .location-page .section-title {
    font-size: 22px !important;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }
  .location-page .section-desc {
    font-size: 12px !important;
    white-space: nowrap;
    letter-spacing: -0.3px;
  }
  /* CTA on location page */
  .location-page .cta-box h2 {
    font-size: 22px !important;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }
  .location-page .cta-box p {
    font-size: 13px !important;
    white-space: nowrap;
  }
}

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .menu { display: none; }
  .menu.open {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    width: 100vw;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: rgba(2,6,15,0.98);
    backdrop-filter: blur(14px);
    padding: 32px 20px 40px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    box-sizing: border-box;
  }
  .menu.open li { width: 100%; display: block; }
  .menu.open a {
    display: block;
    padding: 22px 24px;
    width: 100%;
    font-size: 17px;
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.2s;
    box-sizing: border-box;
  }
  .menu.open a:hover, .menu.open a.active {
    background: rgba(0,179,255,0.08);
    border-color: rgba(0,179,255,0.4);
  }
  .menu.open a::after { display: none; }
  .menu.open .cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 22px 24px;
    margin-top: 14px;
    font-size: 17px;
    border-radius: 14px;
    background: var(--grad);
    border: none;
    color: #ffffff;
    box-sizing: border-box;
  }
  .menu-toggle { display: flex; }
  .hero { padding: 110px 20px 60px; }
  section { padding: 70px 20px; }
  .content-block { padding: 60px 20px; }
  .page-header { padding: 130px 20px 60px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .event-title { font-size: 36px; }
  .event-title .price { font-size: 50px; }
  .cta-box { padding: 50px 24px; }
}
