/* ===== 에스코어드림(S-Core Dream) 웹폰트 ===== */
@font-face{font-family:'Escoredream';src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-1Thin.woff') format('woff');font-weight:100;font-display:swap;}
@font-face{font-family:'Escoredream';src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-2ExtraLight.woff') format('woff');font-weight:200;font-display:swap;}
@font-face{font-family:'Escoredream';src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');font-weight:300;font-display:swap;}
@font-face{font-family:'Escoredream';src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff') format('woff');font-weight:400;font-display:swap;}
@font-face{font-family:'Escoredream';src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff') format('woff');font-weight:500;font-display:swap;}
@font-face{font-family:'Escoredream';src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff') format('woff');font-weight:600;font-display:swap;}
@font-face{font-family:'Escoredream';src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff') format('woff');font-weight:700;font-display:swap;}
@font-face{font-family:'Escoredream';src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff') format('woff');font-weight:800;font-display:swap;}
@font-face{font-family:'Escoredream';src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-9Black.woff') format('woff');font-weight:900;font-display:swap;}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Escoredream', 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: #00391C;
  background: #FFFFFF;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Variables ===== */
:root {
  --deep-green: #00391C;
  --lime: #B3F271;
  --mint: #8FE6C8;
  --light-green-bg: #EAF8D6;
  --alt-bg: #F6FAF0;
  --tag-bg: #CFEFA0;
  --aux-text: #5C7A62;
  --card-border: #E4EBDD;
  --danger: #FF6B6B;
  --muted: #B0C4B0;
}

/* ===== Utilities ===== */
.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

/* ===== Buttons ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 24px;
  background: linear-gradient(100deg, var(--lime), var(--mint));
  color: var(--deep-green);
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(179, 242, 113, 0.3);
  transition: all 0.3s ease;
}

.btn-cta:hover {
  box-shadow: 0 15px 35px rgba(179, 242, 113, 0.4);
  transform: scale(1.05);
}

.btn-cta-large {
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 800;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(179, 242, 113, 0.3);
}

.btn-cta-large:hover {
  box-shadow: 0 20px 45px rgba(179, 242, 113, 0.4);
}

.text-link {
  color: var(--deep-green);
  font-weight: 500;
  font-size: 14px;
}

.text-link:hover {
  text-decoration: underline;
}

/* ===== Section 1: Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 80px;
}

.hero-blob-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--light-green-bg), rgba(143, 230, 200, 0.2));
  filter: blur(80px);
  opacity: 0.5;
  transform: translate(25%, -33%);
  pointer-events: none;
}

.hero-blob-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(234, 248, 214, 0.4);
  filter: blur(80px);
  opacity: 0.4;
  transform: translate(-25%, 33%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-logo {
  position: static;
  display: block;
  text-align: center;
  margin: 0 auto 16px;
  width: 100%;
}
.hero-logo img {
  display: inline-block;
  height: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero-mascot-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.hero-mascot {
  position: relative;
  width: 144px;
  height: 144px;
  animation: float 3s ease-in-out infinite;
}

.hero-mascot-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--lime), var(--mint));
  opacity: 0.3;
  filter: blur(20px);
}

.hero-mascot img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
  mix-blend-mode: multiply;
  background: transparent;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--aux-text);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-hint {
  margin-top: 16px;
  font-size: 14px;
  color: var(--aux-text);
}

/* ===== Section 2: Fear ===== */
.fear {
  background: var(--alt-bg);
  padding: 80px 0;
}

.fear-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--deep-green);
  line-height: 1.35;
  margin-bottom: 16px;
}

.fear-desc {
  font-size: 16px;
  color: var(--aux-text);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
}

.worry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.worry-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.worry-card .emoji {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.worry-card p {
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-green);
  line-height: 1.6;
}

.fear-question {
  font-size: 20px;
  font-weight: 800;
  color: var(--deep-green);
  line-height: 1.4;
}

/* ===== Section 3: Solution ===== */
.solution {
  background: #fff;
  padding: 80px 0;
}

.solution-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--deep-green);
  line-height: 1.35;
  margin-bottom: 16px;
}

.solution-desc {
  font-size: 16px;
  color: var(--aux-text);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.solution-emphasis {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-green);
  line-height: 1.7;
  max-width: 640px;
  margin: 16px auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 56px 0 40px;
}

.step-card {
  background: var(--light-green-bg);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
}

.step-card .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.step-num {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--deep-green);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--aux-text);
  line-height: 1.6;
}

.step-arrow {
  display: none;
}

.solution-check {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-green);
}

/* ===== Section 4: Differentiator ===== */
.diff {
  background: var(--alt-bg);
  padding: 80px 0;
}

.diff-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--deep-green);
  line-height: 1.35;
  text-align: center;
  margin-bottom: 48px;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.diff-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.diff-card .icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.diff-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 12px;
}

.diff-card .body {
  font-size: 14px;
  color: var(--aux-text);
  line-height: 1.7;
  white-space: pre-line;
}

.diff-card .quote {
  margin-top: 16px;
  font-size: 14px;
  color: var(--aux-text);
  font-style: italic;
  line-height: 1.6;
}

/* ===== Section 5: Personas ===== */
.personas {
  background: #fff;
  padding: 80px 0;
}

.personas-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--deep-green);
  line-height: 1.35;
  text-align: center;
  margin-bottom: 48px;
}

.personas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.persona-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.persona-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.persona-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--deep-green);
  margin-bottom: 4px;
}

.persona-card .desc {
  font-size: 14px;
  color: var(--aux-text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.persona-card .example {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 4px;
}

.persona-card .result {
  font-size: 12px;
  color: var(--aux-text);
  margin-bottom: 16px;
}

.persona-card .cta-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-green);
}

.persona-card .cta-link:hover {
  text-decoration: underline;
}

/* ===== Section 6: Results ===== */
.results {
  background: var(--alt-bg);
  padding: 80px 0;
}

.results-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--deep-green);
  line-height: 1.35;
  text-align: center;
  margin-bottom: 48px;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  align-items: stretch;
}

.compare-before {
  background: var(--light-green-bg);
  border-radius: 16px;
  padding: 32px;
}

.compare-before .label {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.chat-bubble {
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7;
}

.chat-bubble-user {
  background: #fff;
  border-top-right-radius: 4px;
  max-width: 90%;
  margin-left: auto;
  color: var(--deep-green);
}

.chat-bubble-ai {
  background: rgba(255,255,255,0.7);
  border-top-left-radius: 4px;
  max-width: 90%;
  color: var(--aux-text);
}

.compare-after {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.compare-after .label {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.compare-after .narration {
  font-size: 14px;
  color: rgba(0, 57, 28, 0.8);
  line-height: 1.7;
}

.compare-after .blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to top, #fff, transparent);
  border-radius: 0 0 16px 16px;
}

.compare-after .blur-text {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 12px;
  color: var(--aux-text);
}

/* Success Story */
.success-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
}

.success-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--deep-green);
  text-align: center;
  margin-bottom: 32px;
}

.success-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--deep-green);
  text-align: center;
}

.success-role {
  font-size: 14px;
  color: var(--aux-text);
  text-align: center;
  margin-bottom: 24px;
}

.success-quotes {
  max-width: 640px;
  margin: 0 auto 32px;
}

.success-quotes p {
  font-size: 14px;
  color: var(--aux-text);
  font-style: italic;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 16px;
}

.success-checks {
  max-width: 420px;
  margin: 0 auto;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.check-item .check-icon {
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
}

.check-item p {
  font-size: 14px;
  color: var(--deep-green);
  line-height: 1.6;
}

/* ===== Section 7: Pricing ===== */
.pricing {
  background: #fff;
  padding: 80px 0;
}

.pricing-headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--deep-green);
  line-height: 1.35;
  text-align: center;
  margin-bottom: 40px;
}

.pricing-card {
  border: 2px solid var(--lime);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
}

.pricing-card .price-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.pricing-card .price-amount {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 4px;
}

.pricing-card .price-bonus {
  font-size: 16px;
  margin-bottom: 4px;
}

.pricing-card .price-bonus strong {
  color: var(--deep-green);
}

.pricing-card .price-limited {
  font-size: 14px;
  font-weight: 700;
  color: var(--danger);
  margin-bottom: 24px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--card-border);
  margin: 0 0 24px;
}

.pricing-card .includes-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.pricing-card .include-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  text-align: left;
}

.pricing-card .include-item .check {
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-green);
  flex-shrink: 0;
}

.pricing-card .include-item p {
  font-size: 14px;
  color: var(--aux-text);
  line-height: 1.6;
}

.pricing-card .include-item .underline-bold {
  color: var(--deep-green);
  font-weight: 700;
  text-decoration: underline;
}

.pricing-card .hint {
  font-size: 14px;
  color: var(--aux-text);
  margin-bottom: 20px;
}

.pricing-card .detail-link {
  margin-top: 16px;
}

/* ===== Section 8: Final CTA ===== */
.final-cta {
  position: relative;
  background: var(--alt-bg);
  padding: 80px 0;
}

.final-cta-logo {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 160px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.final-cta .mascot-small {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.final-cta .mascot-small .wrap {
  position: relative;
  width: 120px;
  height: 120px;
}

.final-cta .mascot-small .glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--lime), var(--mint));
  opacity: 0.3;
  filter: blur(16px);
}

.final-cta .mascot-small img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: transparent;
}

.final-cta .vs-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--deep-green);
  line-height: 1.4;
  margin-bottom: 32px;
}

.final-cta .vs-text .fake {
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 2px;
}

.final-cta .vs-text .real {
  background: rgba(179, 242, 113, 0.3);
  padding: 0 4px;
  border-radius: 4px;
}

.final-cta .question {
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
  background: #fff;
  border-top: 1px solid var(--card-border);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.footer-info p {
  font-size: 12px;
  color: var(--aux-text);
  line-height: 1.8;
}

.footer-links {
  font-size: 12px;
  color: var(--aux-text);
  text-align: center;
}

.footer-links a {
  display: block;
  line-height: 1.8;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--deep-green);
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 32px;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .hero { padding: 96px 0 112px; }
  .hero-logo img {
    height: 160px;
  }
  .hero-mascot { width: 192px; height: 192px; }
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 20px; }

  .fear { padding: 112px 0; }
  .fear-headline { font-size: 36px; }
  .fear-question { font-size: 24px; }
  .worry-grid { grid-template-columns: repeat(3, 1fr); }

  .solution { padding: 112px 0; }
  .solution-headline { font-size: 36px; }
  .solution-desc { font-size: 18px; }
  .solution-emphasis { font-size: 18px; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .step-arrow { display: flex; }

  .diff { padding: 112px 0; }
  .diff-headline { font-size: 36px; }
  .diff-grid { grid-template-columns: repeat(3, 1fr); }

  .personas { padding: 112px 0; }
  .personas-headline { font-size: 36px; }
  .personas-grid { grid-template-columns: repeat(2, 1fr); }

  .results { padding: 112px 0; }
  .results-headline { font-size: 36px; }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing { padding: 112px 0; }
  .pricing-headline { font-size: 36px; }

  .final-cta { padding: 112px 0; }
  .final-cta-logo { right: 24%; }
  .final-cta .mascot-small .wrap { width: 160px; height: 160px; }
  .final-cta .vs-text { font-size: 30px; }
  .final-cta .question { font-size: 20px; }

  .footer-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .footer-links { text-align: right; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 60px; }
  .personas-grid { grid-template-columns: repeat(4, 1fr); }
}
