/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 60px; }
body {
  font-family: 'Noto Sans KR', -apple-system, sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== Color Variables ===== */
:root {
  --navy: #2B4C8C;
  --navy-dark: #1A3366;
  --navy-light: #3D6BBF;
  --gold: #D4A843;
  --gold-light: #E8C96A;
  --gold-dark: #B8912F;
  --warm-bg: #FBF7F0;
  --warm-bg2: #F5EFE3;
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-light: #999;
}

/* ===== Top Banner ===== */
.top-banner {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-dark);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.badge-target {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
}
.countdown-timer {
  color: var(--gold-light);
  font-family: 'Black Han Sans', sans-serif;
  font-size: 16px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy);
  padding: 60px 20px 50px;
  text-align: center;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-split {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, #3D5FA0 0%, #4A6DB0 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}
.badge-discount {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.hero-title { margin-bottom: 24px; }
.title-sub {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.title-main {
  display: block;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.35);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 6px;
}
.title-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.price-discount {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 80px;
  color: var(--gold);
  text-shadow: 3px 3px 0 rgba(0,0,0,0.1);
  line-height: 1;
  letter-spacing: 3px;
}
.price-discount small {
  font-size: 48px;
}
.price-label {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
  letter-spacing: 4px;
}
.hero-desc {
  color: #fff;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 32px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.hero-desc strong { color: #fff; font-weight: 900; }

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 18px 48px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(212,168,67,0.4);
  letter-spacing: 1px;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,168,67,0.5);
  background: var(--gold-dark);
}
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,168,67,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(212,168,67,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,168,67,0); }
}

.hero-remaining {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.remaining-count { color: var(--gold-light); font-weight: 900; }
.dot-live {
  display: inline-block;
  width: 8px; height: 8px;
  background: #00e676;
  border-radius: 50%;
  animation: dotPulse 1.5s infinite;
  vertical-align: middle;
  margin-left: 4px;
}
@keyframes dotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.5); }
}

/* ===== Section Titles ===== */
.section-title {
  text-align: center;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 36px;
  color: var(--navy-dark);
  letter-spacing: 4px;
}

/* ===== Message Section (굶지 마세요) ===== */
.message-section {
  padding: 60px 20px;
  background: var(--warm-bg);
}
.message-card {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 28px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  border: 2px solid var(--warm-bg2);
}
.message-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: 6px;
  word-spacing: 8px;
}
.message-desc {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-gray);
}
.message-desc strong { color: var(--navy-dark); }

/* ===== Why Section ===== */
.why-section {
  padding: 60px 20px;
  background: #fff;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}
.info-card {
  background: var(--warm-bg);
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid rgba(43,76,140,0.08);
}
.info-card:hover { transform: translateY(-4px); }
.card-icon { margin-bottom: 14px; }
.info-card h3 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--navy-dark);
}
.info-card p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* ===== Empathy Section ===== */
.empathy-section {
  padding: 60px 20px;
  background: var(--warm-bg);
}
.checklist {
  max-width: 440px;
  margin: 0 auto 32px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.check-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  margin-top: 1px;
}
.empathy-answer {
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
  color: var(--navy-dark);
}

/* ===== Program Section ===== */
.program-section {
  padding: 60px 20px;
  background: #fff;
}
.program-steps {
  max-width: 400px;
  margin: 0 auto;
}
.step-card {
  background: var(--warm-bg);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border-left: 4px solid var(--navy);
}
.step-num {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.step-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.step-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
}
.step-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--navy-light);
  padding: 8px 0;
  opacity: 0.5;
}

/* ===== Reviews ===== */
.review-section {
  padding: 60px 20px;
  background: var(--warm-bg);
}
.review-scroll {
  display: flex;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
  flex-direction: column;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
}
.review-stars { font-size: 16px; margin-bottom: 12px; }
.review-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}
.review-author { font-size: 12px; color: var(--text-light); font-weight: 700; }
.review-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--navy);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

/* ===== Price Section ===== */
.price-section {
  padding: 60px 20px;
  background: #fff;
}
.price-box {
  max-width: 440px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(43,76,140,0.12);
}
.price-highlight {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 36px 24px;
}
.price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.2);
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.price-original-text {
  font-size: 16px;
  opacity: 0.7;
}
.price-discount-big {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 3px;
}
.price-discount-big small { font-size: 32px; }
.price-notice {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.6;
}
.price-benefits {
  background: #fff;
  padding: 28px 24px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.benefit-item + .benefit-item { border-top: 1px solid #f0f0f0; }
.benefit-check {
  width: 24px; height: 24px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ===== Form Section ===== */
.form-section {
  padding: 60px 20px 120px;
  background: var(--navy-dark);
}
.form-wrap {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px 28px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.3);
}
.form-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  color: var(--navy-dark);
  letter-spacing: 3px;
}
.form-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.required { color: var(--gold-dark); }
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  background: #fff;
}
.form-check {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-gray);
}
.form-check label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--navy);
  flex-shrink: 0;
}
.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Noto Sans KR', sans-serif;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(43,76,140,0.3);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(43,76,140,0.4);
  background: var(--navy-dark);
}
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.success-msg { text-align: center; padding: 20px 0; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.success-msg h3 { font-size: 24px; font-weight: 900; margin-bottom: 8px; color: var(--navy-dark); }
.success-msg p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ===== Sticky Bottom CTA ===== */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: #fff;
  border-top: 2px solid var(--navy);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.bottom-bar.show { transform: translateY(0); }
.bottom-bar-text strong { display: block; font-size: 15px; color: var(--navy-dark); }
.bottom-bar-text span { font-size: 12px; color: var(--text-light); }
.bottom-bar-btn {
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(43,76,140,0.3);
  animation: pulse-navy 2s infinite;
}
@keyframes pulse-navy {
  0% { box-shadow: 0 0 0 0 rgba(43,76,140,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(43,76,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,76,140,0); }
}

/* ===== Live Toast ===== */
.live-toast {
  position: fixed;
  bottom: 80px; left: 20px;
  z-index: 98;
  background: rgba(26,51,102,0.92);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-120%);
  transition: transform 0.4s ease;
  max-width: 300px;
  backdrop-filter: blur(10px);
}
.live-toast.show { transform: translateX(0); }
.toast-dot {
  width: 8px; height: 8px;
  background: #00e676;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 1.5s infinite;
}

/* ===== Footer ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 40px 20px 100px;
  font-size: 12px;
  line-height: 1.8;
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .title-main { font-size: 40px; }
  .price-discount { font-size: 64px; }
  .price-discount small { font-size: 38px; }
  .price-label { font-size: 32px; }
  .message-title { font-size: 36px; }
  .card-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-wrap { padding: 32px 20px; }
  .hero-bg-split { width: 40%; opacity: 0.3; }
}

@media (min-width: 768px) {
  .hero { min-height: 80vh; }
  .title-main { font-size: 64px; }
  .price-discount { font-size: 96px; }
  .price-discount small { font-size: 56px; }
  .price-label { font-size: 48px; }
}
