@charset "utf-8";

/* ═══════════ VARIABLES ═══════════ */
:root {
  --gold: #d4a853;
  --gold-light: #f0d78c;
  --gold-dark: #b8912e;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-50: #fef2f2;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-50: #eff6ff;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-50: #f0fdf4;
  --orange-600: #ea580c;
  --orange-50: #fff7ed;
  --amber-50: #fffbeb;
  --amber-200: #fde68a;
  --amber-700: #b45309;
  --amber-800: #92400e;
}

/* ═══════════ RESET ═══════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--slate-50);
  color: var(--slate-800);
  min-height: 100vh;
  padding-bottom: 100px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

#hd_login_msg { display: none; }
#wrapper { max-width: 100%; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  background: var(--slate-900);
  color: #fff;
  padding: 72px 24px 80px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% 20%, rgba(212,168,83,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 100% at 80% 80%, rgba(37,99,235,0.06) 0%, transparent 50%);
}
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 520px; height: 520px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(212,168,83,0.1);
  border-radius: 50%;
  animation: hero-pulse 6s ease-in-out infinite;
}
.hero-ring:nth-child(2) {
  width: 380px; height: 380px;
  animation-delay: 2s;
  border-color: rgba(212,168,83,0.06);
}
@keyframes hero-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.08); }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fade-down 0.8s ease-out both;
}
.hero h1 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 14px;
  animation: fade-down 0.8s ease-out 0.15s both;
}
.hero h1 .accent {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  display: block;
  margin-top: 4px;
  letter-spacing: -0.5px;
}
.hero-sub {
  color: var(--slate-400);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.2px;
  animation: fade-down 0.8s ease-out 0.3s both;
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════ MAIN ═══════════ */
.main-content {
  max-width: 480px;
  margin: -40px auto 0;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

/* ═══════════ CARD ═══════════ */
.card {
  border-radius: 24px;
  padding: 32px 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.card--white {
  background: #fff;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.card--dark {
  background: var(--slate-900);
  color: #fff;
  box-shadow: 0 8px 48px rgba(0,0,0,0.2);
}

/* ═══════════ SECTION HEADER ═══════════ */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(148,163,184,0.2);
}
.section-header--dark { border-color: rgba(255,255,255,0.08); }
.section-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.section-icon--blue { background: var(--blue-50); color: var(--blue-600); }
.section-icon--gold { background: rgba(212,168,83,0.15); color: var(--gold); }
.section-icon--red { background: var(--red-50); color: var(--red-600); }
.section-header h2 {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

/* ═══════════ FEATURE ROW ═══════════ */
.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-row + .feature-row { margin-top: 28px; }
.feature-icon-box {
  width: 68px;
  min-height: 68px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 4px;
}
.feature-icon-box svg { width: 22px; height: 22px; }
.feature-icon-box span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fi--blue { background: var(--blue-50); color: var(--blue-600); }
.fi--blue span { color: var(--blue-700); }
.fi--orange { background: var(--orange-50); color: var(--orange-600); }
.fi--orange span { color: var(--orange-600); }
.fi--green { background: var(--green-50); color: var(--green-600); }
.fi--green span { color: var(--green-600); }
.feature-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.feature-text p {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.5;
}
.feature-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--blue-50);
  color: var(--blue-700);
}
.feature-quote {
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  color: var(--orange-600);
  margin-top: 6px;
}
.feature-note {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-600);
  margin-top: 6px;
}

/* ═══════════ STATS GRID ═══════════ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--slate-800);
  border-radius: 18px;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: var(--slate-400);
  letter-spacing: 0.3px;
}

/* ═══════════ DARK LIST ═══════════ */
.dark-list { list-style: none; }
.dark-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--slate-300);
  line-height: 1.6;
}
.dark-list li + li { margin-top: 14px; }
.dark-list-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(212,168,83,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.dark-list-icon svg { width: 14px; height: 14px; color: var(--gold); }
.dark-list strong { color: #fff; font-weight: 700; }

/* ═══════════ RIBBON ═══════════ */
.ribbon {
  position: absolute;
  top: 16px; right: -30px;
  background: var(--red-500);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}

/* ═══════════ DEAL BOX ═══════════ */
.deal-subtitle {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 18px;
}
.deal-box {
  background: var(--red-50);
  border: 2px dashed rgba(239,68,68,0.25);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 28px;
}
.deal-box .label {
  font-size: 13px;
  color: var(--slate-600);
  margin-bottom: 4px;
}
.deal-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--red-600);
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: rgba(239,68,68,0.2);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.deal-rows { display: flex; flex-direction: column; gap: 6px; }
.deal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
}
.deal-row .name { color: var(--slate-600); font-weight: 500; }
.deal-row .value { color: var(--red-600); font-weight: 800; }

/* ═══════════ CHECK POINTS ═══════════ */
.check-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--slate-700);
}
.check-header svg { color: var(--green-500); }
.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  padding: 14px 16px;
  background: var(--slate-100);
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.12);
  color: var(--slate-700);
  font-weight: 500;
  line-height: 1.5;
}
.check-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-600);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(37,99,235,0.3);
}

/* ═══════════ CONTACT CARD ═══════════ */
.contact-card {
  background: var(--amber-50);
  border: 1.5px solid var(--amber-200);
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
  margin-bottom: 24px;
}
.contact-quote {
  font-size: 14px;
  font-weight: 700;
  color: var(--amber-800);
  font-style: italic;
  margin-bottom: 18px;
}
.contact-role {
  font-size: 18px;
  color: var(--slate-800);
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-phones { display: flex; flex-direction: column; gap: 10px; }
.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.15s ease;
  letter-spacing: 0.5px;
}
.btn-call:active { transform: scale(0.97); }
.btn-call--primary {
  background: var(--slate-900);
  color: #fff;
  box-shadow: 0 8px 24px rgba(15,23,42,0.25);
}
.btn-call svg { flex-shrink: 0; }
.contact-disclaimer {
  font-size: 10px;
  color: var(--slate-400);
  margin-top: 18px;
  line-height: 1.6;
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: var(--slate-900);
  color: #fff;
  padding: 48px 24px 100px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand { margin-bottom: 24px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
}
.footer-contact {
  background: var(--slate-800);
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 28px;
}
.footer-role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-manager { margin-bottom: 16px; }
.footer-manager .label {
  font-size: 13px;
  color: var(--slate-400);
  margin-right: 8px;
}
.footer-manager .name {
  font-size: 24px;
  font-weight: 900;
  color: var(--slate-400);
  letter-spacing: 6px;
}
.footer-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-phones .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-400);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-phones .phone-link:hover { color: var(--gold); }
.footer-phones .phone-divider {
  color: var(--slate-400);
  font-size: 14px;
}
.footer-copyright {
  color: var(--slate-500);
  font-size: 11px;
  line-height: 1.8;
}
.footer-disclaimer {
  margin-top: 8px;
  color: var(--slate-600);
}

/* ═══════════ STICKY CTA ═══════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 12px 16px;
  z-index: 100;
  display: flex;
  justify-content: center;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 480px;
  width: 100%;
  background: var(--blue-600);
  color: #fff;
  padding: 16px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
  transition: transform 0.15s ease;
  letter-spacing: -0.2px;
}
.sticky-cta a:active { transform: scale(0.98); }
.sticky-cta a svg { flex-shrink: 0; }

/* ═══════════ ANIMATIONS ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (min-width: 768px) {
  .hero { padding: 100px 40px 120px; }
  .hero h1 { font-size: 36px; }
  .hero h1 .accent { font-size: 42px; }
  .main-content { max-width: 600px; padding: 0 24px; margin-top: -60px; }
  .card { padding: 40px 32px; }
  .stats-grid { gap: 16px; }
  .stat-value { font-size: 42px; }
  .footer-inner { max-width: 600px; }
}
