/* ===== SKIP NAV ===== */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  font-size: 14px;
}
.skip-nav:focus { top: 0; }

/* ===== LOGO DOT ===== */
.logo-dot { color: var(--cyan); }
.logo { color: #fff; font-size: 22px; font-weight: 900; letter-spacing: -0.5px; }

/* ===== HEADER NAV ===== */
.header-nav { display: flex; gap: 24px; align-items: center; }
.header-nav a { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500; transition: color .2s; }
.header-nav a:hover { color: var(--cyan); }
@media (max-width: 900px) { .header-nav { display: none; } }

/* ===== SEO INTRO ===== */
.seo-intro { background: #fff; padding: 80px 0; }
.seo-intro-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
.seo-intro-text h2 { font-size: 28px; font-weight: 900; margin-bottom: 20px; line-height: 1.35; }
.seo-intro-text p { color: #475569; font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.intro-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag-link {
  display: inline-block;
  background: #eff6ff;
  color: var(--blue);
  border: 1px solid #bfdbfe;
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}
.tag-link:hover { background: var(--blue); color: #fff; }
.seo-intro-keywords {
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
}
.seo-intro-keywords h3 { font-size: 15px; font-weight: 800; color: #1e293b; margin-bottom: 16px; }
.keyword-list { display: flex; flex-direction: column; gap: 2px; }
.keyword-list li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14px;
  color: #334155;
  transition: color .2s;
}
.keyword-list li a:hover { color: var(--blue); }
.keyword-list li a strong { color: #1e293b; }
@media (max-width: 900px) {
  .seo-intro-grid { grid-template-columns: 1fr; }
}

/* ===== RESULT TAG ===== */
.result-tag {
  display: inline-block;
  background: rgba(34,211,238,.15);
  color: var(--cyan);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 600;
}

/* ===== APT IMG PLACEHOLDER ===== */
.apt-img-1 { background: linear-gradient(135deg,#1a3a5c,#0d2240); }
.apt-img-2 { background: linear-gradient(135deg,#1a2c4e,#0a1a30); }
.apt-img-3 { background: linear-gradient(135deg,#162840,#080f20); }
.apt-img-4 { background: linear-gradient(135deg,#1e3350,#0f1f38); }
.apt-img-5 { background: linear-gradient(135deg,#12273d,#060e1c); }
.apt-img-6 { background: linear-gradient(135deg,#1c3047,#0b1929); }
.apt-img-7 { background: linear-gradient(135deg,#152438,#07101c); }
.apt-img-8 { background: linear-gradient(135deg,#1b2e48,#0a172a); }

/* ===== PRICING SUB TITLE ===== */
.pricing-sub-title { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.pricing-sub-title.white { color: #fff; }

/* ===== BLOG PREVIEW ===== */
.blog-preview { background: #f8faff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.blog-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(59,130,246,.12); border-color: var(--blue); }
.blog-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.blog-tag {
  display: inline-block;
  background: #eff6ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  width: fit-content;
}
.blog-body h4 { font-size: 15px; font-weight: 800; color: #1e293b; line-height: 1.4; }
.blog-body p { font-size: 13px; color: #64748b; line-height: 1.6; flex: 1; }
.blog-more { font-size: 13px; color: var(--blue); font-weight: 700; }
.blog-more-wrap { text-align: center; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== FOOTER NAV ===== */
.footer-nav { display: flex; gap: 20px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,.5); font-size: 13px; transition: color .2s; }
.footer-nav a:hover { color: var(--cyan); }
.footer-inner { text-align: center; }
.footer-logo { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 16px; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --red: #ef4444;
  --yellow: #fbbf24;
  --dark: #0f172a;
  --dark2: #1e293b;
  --dark3: #0d1b2e;
  --white: #ffffff;
  --gray: #94a3b8;
  --light: #f1f5f9;
  --font: 'Noto Sans KR', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: #1e293b;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
  border: none;
  font-family: var(--font);
}
.btn-header {
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 6px;
}
.btn-header:hover { background: #2563eb; }

.btn-hero {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff;
  padding: 18px 48px;
  font-size: 18px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(59,130,246,.4);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,130,246,.5); }
.btn-hero.large { padding: 20px 56px; font-size: 20px; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  width: 100%;
  text-align: center;
}
.btn-primary:hover { background: #2563eb; }
.btn-primary.full { width: 100%; text-align: center; display: block; }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  width: 100%;
  text-align: center;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  width: 100%;
  text-align: center;
}
.btn-outline-white:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-cyan {
  background: var(--cyan);
  color: var(--dark);
  width: 100%;
  text-align: center;
  font-weight: 800;
}
.btn-cyan:hover { background: #06b6d4; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,15,30,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo span { color: var(--cyan); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #020b18 0%, #0d1f3c 40%, #0a2040 70%, #051020 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 60% 40%, rgba(59,130,246,.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 70%, rgba(34,211,238,.1) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(59,130,246,.2);
  border: 1px solid rgba(59,130,246,.4);
  color: var(--cyan);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title .highlight {
  background: linear-gradient(90deg, #3b82f6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-prefix, .stat-unit {
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
}
.stat-label {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  margin-top: 6px;
}
.hero-scroll {
  color: rgba(255,255,255,.3);
  font-size: 13px;
  margin-top: 32px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.dark-section {
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 100%);
}
.dark-section-blue {
  background: linear-gradient(135deg, #0f2d5a 0%, #0a1f42 100%);
}

.section-badge {
  display: inline-block;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.3);
  color: var(--blue);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-badge.light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-title.white { color: #fff; }
.section-title.large { font-size: clamp(36px, 5vw, 56px); }
.section-title.huge { font-size: clamp(48px, 7vw, 80px); }

.section-sub {
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 56px;
}
.section-sub.gray { color: rgba(255,255,255,.5); }

.center-content { text-align: center; }

.blue { color: var(--blue); }
.cyan { color: var(--cyan); }
.red-text { color: var(--red); }
.yellow { color: var(--yellow); }
.white { color: #fff; }
.big { font-size: 1.2em; }

/* ===== SERVICES ===== */
.services { background: #f8faff; text-align: center; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  transition: all .25s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(59,130,246,.12);
  border-color: var(--blue);
}
.service-icon { font-size: 40px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: #64748b; font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.service-tags { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.service-tags span {
  background: #eff6ff;
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== RESULTS ===== */
.results { text-align: center; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.result-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all .25s;
}
.result-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.result-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.result-img::after { content: '🏢'; font-size: 40px; opacity: .3; }
.result-info { padding: 14px; text-align: left; }
.result-name { color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.result-count { font-size: 15px; font-weight: 800; }
.cyan-num { color: var(--cyan); font-size: 22px; }

/* ===== DB QUALITY ===== */
.db-quality { text-align: center; }
.db-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.db-card {
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
}
.db-card.good { border-color: #86efac; background: #f0fdf4; }
.db-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.db-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: #1e293b; }
.db-card p { color: #475569; font-size: 14px; line-height: 1.6; }

/* ===== REFUND ===== */
.refund { text-align: center; }
.shield-icon { font-size: 64px; margin-bottom: 24px; display: block; }
.chat-proof {
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px;
  max-width: 480px;
  margin: 40px auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 85%;
}
.chat-bubble.sent {
  background: #fee500;
  color: #1a1a1a;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-bubble.recv {
  background: #2a2a3e;
  color: rgba(255,255,255,.85);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.guarantee-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 24px 32px;
  max-width: 560px;
  margin: 0 auto;
}
.guarantee-box p { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.8; }

/* ===== FAKE DB 100X ===== */
.fake-db { position: relative; overflow: hidden; text-align: center; }
.bg-100x {
  position: absolute;
  font-size: 280px;
  font-weight: 900;
  color: rgba(255,255,255,.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  letter-spacing: -10px;
}
.flame-icon { font-size: 56px; margin-bottom: 16px; display: block; position: relative; z-index: 1; }
.gray-label { color: rgba(255,255,255,.5); font-size: 18px; margin-bottom: 8px; position: relative; z-index: 1; }
.fake-db .section-title { position: relative; z-index: 1; }
.fake-db .guarantee-box { position: relative; z-index: 1; margin-top: 32px; }

/* ===== COMPARISON ===== */
.comparison { background: #f8faff; }
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.compare-bad, .compare-good {
  border-radius: 16px;
  padding: 32px;
}
.compare-bad { background: #fff5f5; border: 1.5px solid #fecaca; }
.compare-good { background: #f0fdf4; border: 1.5px solid #86efac; }
.compare-label { font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.compare-label.bad { color: #dc2626; }
.compare-label.good { color: #16a34a; }
.compare-bad li, .compare-good li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 15px;
  color: #334155;
}
.compare-bad li::before { content: '✕ '; color: #dc2626; font-weight: 700; }
.compare-good li::before { content: '✓ '; color: #16a34a; font-weight: 700; }

/* ===== PROCESS ===== */
.process { text-align: center; }
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 32px 24px;
  width: 200px;
  transition: all .25s;
}
.step:hover { border-color: var(--cyan); background: rgba(34,211,238,.06); }
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.step h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.6; }
.step-arrow {
  font-size: 24px;
  color: rgba(255,255,255,.2);
  padding: 0 8px;
}

/* ===== ALIMTOK ===== */
.alimtok-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.alimtok-text { padding-right: 16px; }
.white-sub { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.9; }
.white-sub.center { text-align: center; }
.phone-frame {
  background: #1a1a2e;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.12);
  padding: 28px;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.kakao-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.kakao-icon { font-size: 20px; }
.alimtok-msg p {
  background: #fee500;
  color: #1a1a1a;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.kakao-btn {
  display: block;
  background: rgba(254,229,0,.15);
  color: #fee500;
  border: 1px solid rgba(254,229,0,.3);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s;
}
.kakao-btn:hover { background: rgba(254,229,0,.25); }

/* ===== PRICING ===== */
.pricing { background: #f8faff; text-align: center; }
.pricing2 { background: linear-gradient(135deg, #0a1628, #0d1f3c); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .25s;
  text-align: center;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(59,130,246,.12); }
.price-card.best {
  border: 2px solid var(--blue);
  box-shadow: 0 8px 40px rgba(59,130,246,.2);
  transform: scale(1.03);
}
.price-card.best:hover { transform: scale(1.03) translateY(-4px); }
.price-card.dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: #fff;
}
.price-card.best-dark {
  border-color: var(--cyan);
  box-shadow: 0 8px 40px rgba(34,211,238,.15);
  transform: scale(1.03);
}

.best-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
}
.cyan-badge { color: var(--cyan) !important; }

.price-tier { font-size: 14px; color: #94a3b8; font-weight: 600; }
.price-count { line-height: 1; }
.big-num { font-size: 64px; font-weight: 900; line-height: 1; color: #1e293b; }
.price-card.dark .big-num { color: var(--cyan); }
.price-card.dark .big-num.white { color: #fff; }
.big-num.cyan { color: var(--cyan); }
.big-num.white { color: #fff; }

.price-per { font-size: 15px; color: #475569; }
.price-card.dark .price-per { color: rgba(255,255,255,.5); }
.price-per strong { color: #1e293b; font-size: 17px; }
.price-card.dark .price-per strong { color: #fff; }

.price-total { font-size: 17px; font-weight: 700; color: #475569; }
.price-total .blue { font-size: 20px; }
.cyan-big { font-size: 28px; font-weight: 900; color: var(--cyan); }

.vat-note { font-size: 12px; color: rgba(255,255,255,.4); }

.price-features { text-align: left; margin: 8px 0; }
.price-features li { padding: 6px 0; font-size: 14px; color: #475569; border-bottom: 1px solid #f1f5f9; }
.price-card.dark .price-features li { color: rgba(255,255,255,.65); border-bottom-color: rgba(255,255,255,.06); }

.expect-row {
  display: flex;
  justify-content: space-between;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.feature-tag {
  background: rgba(34,211,238,.1);
  color: var(--cyan);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

.price-notice {
  margin-top: 32px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.8;
}
.price-notice strong { color: var(--blue); }

/* ===== WARNING ===== */
.warning { background: #fff8f0; }
.warning-box {
  background: #fff;
  border: 2px solid #fbbf24;
  border-radius: 20px;
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.warning-icon { font-size: 48px; display: block; margin-bottom: 16px; }
.warning-box h3 { font-size: 24px; font-weight: 800; margin-bottom: 24px; color: #92400e; }
.warning-list { text-align: left; margin-bottom: 24px; }
.warning-list li { padding: 10px 0; border-bottom: 1px solid #fef3c7; font-size: 15px; color: #78350f; }
.warning-list li::before { content: '⚠️ '; }
.warning-sub { color: #92400e; font-size: 14px; font-weight: 600; }

/* ===== FAQ ===== */
.faq { background: #f8faff; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: #1e293b;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--blue);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

/* ===== URGENCY ===== */
.urgency { text-align: center; }
.urgency .section-title { margin-bottom: 20px; }

/* ===== CONTACT ===== */
.contact { background: #f8faff; }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.contact-form { background: #fff; border-radius: 20px; padding: 40px; border: 1.5px solid #e2e8f0; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: #374151; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  color: #1e293b;
  transition: border-color .2s;
  background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; font-size: 14px; color: #475569; cursor: pointer; }
.form-check input { width: auto; }

.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
}
.contact-info-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 16px; color: #1e293b; }
.kakao-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fee500;
  color: #1a1a1a;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
  transition: background .2s;
}
.kakao-link:hover { background: #f5d900; }
.kakao-logo { font-size: 20px; }
.contact-info-item { font-size: 14px; color: #475569; padding: 6px 0; }
.contact-promise {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-promise p { font-size: 14px; font-weight: 600; color: #16a34a; }

/* ===== FOOTER ===== */
.site-footer {
  background: #060e1c;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 0 32px;
}
.footer-inner { text-align: center; }
.footer-logo { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 20px; }
.footer-info { margin-bottom: 16px; }
.footer-info p { color: rgba(255,255,255,.4); font-size: 13px; line-height: 1.8; }
.footer-info a { color: var(--cyan); text-decoration: underline; }
.footer-copy { color: rgba(255,255,255,.2); font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.best, .price-card.best-dark { transform: none; }
  .compare-wrap { grid-template-columns: 1fr; }
  .alimtok-inner { grid-template-columns: 1fr; text-align: center; }
  .contact-wrap { grid-template-columns: 1fr; }
  .process-steps { gap: 16px; flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 32px; }
  .service-grid { grid-template-columns: 1fr; }
  .db-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .warning-box { padding: 28px 20px; }
  .contact-form { padding: 24px 16px; }
}

/* ===== MOBILE FLOATING EVENT BADGE ===== */
.mobile-floating-event {
  display: none;
}

@media (max-width: 768px) {
  .mobile-floating-event {
    display: block;
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--cyan);
    border-radius: 12px;
    padding: 14px 16px;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .mobile-floating-event a {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
  }
  .floating-badge-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 4px;
  }
  .floating-badge-desc {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
  }
  .floating-badge-desc strong {
    color: var(--cyan);
    font-weight: 800;
  }
  .floating-badge-btn {
    margin-top: 10px;
    background: #fee500;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(254, 229, 0, 0.2);
  }
}

@keyframes slideUp {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

