/* ================================ */
/* 하준맘 랜딩페이지 - 육아맘 타겟  */
/* 모바일 퍼스트 디자인             */
/* ================================ */

:root {
  /* 따뜻한 육아맘 컬러 팔레트 */
  --cream: #FFF8F0;
  --warm-bg: #FFFAF5;
  --peach: #FFE4CC;
  --peach-light: #FFF0E5;
  --coral: #FF8A6C;
  --coral-deep: #FF6B4A;
  --gold: #FFB800;
  --gold-light: #FFF3D0;
  --sage: #8FAE8B;
  --sage-light: #E8F0E7;
  --brown: #5C4033;
  --brown-light: #8B6F5C;
  --text-primary: #2D2016;
  --text-secondary: #6B5B4F;
  --text-light: #9B8A7E;
  --white: #FFFFFF;
  --shadow-soft: 0 2px 16px rgba(92, 64, 51, 0.06);
  --shadow-card: 0 4px 24px rgba(92, 64, 51, 0.08);
  --shadow-float: 0 8px 32px rgba(92, 64, 51, 0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--warm-bg);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ================================ */
/* Landing Wrapper                  */
/* ================================ */
.landing-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0,0,0,0.05);
}

/* ================================ */
/* Section Base                     */
/* ================================ */
.section {
  padding: 48px 24px;
  position: relative;
}

.section + .section {
  border-top: none;
}

/* ================================ */
/* SECTION 1: Intro                 */
/* ================================ */
.section-intro {
  background: linear-gradient(180deg, #FFF8F0 0%, #FFFFFF 100%);
  padding-top: 56px;
  padding-bottom: 48px;
  text-align: center;
}

.intro-profile {
  margin-bottom: 32px;
}

.profile-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.avatar-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 4px 20px rgba(255, 138, 108, 0.3);
  position: relative;
}

.avatar-placeholder::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--peach);
  opacity: 0.5;
}

.profile-tag {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.intro-greeting {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.highlight-name {
  color: var(--coral-deep);
  position: relative;
}

.highlight-name::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--peach);
  z-index: -1;
  border-radius: 4px;
}

.emoji {
  display: inline-block;
  font-style: normal;
}

.intro-paragraph {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
  word-break: keep-all;
}

.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px 0;
}

.divider-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 14px;
}

.fade-text {
  color: var(--text-secondary);
}

/* ================================ */
/* SECTION 2: Discovery             */
/* ================================ */
.section-discovery {
  background: var(--white);
  padding: 48px 24px;
}

.story-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
  word-break: keep-all;
}

.notification-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.notif-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--peach-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--brown);
  font-weight: 500;
  transform: translateX(-10px);
  opacity: 0;
  animation: slideInNotif 0.5s ease forwards;
}

.notif-card:nth-child(1) { animation-delay: 0.1s; }
.notif-card:nth-child(2) { animation-delay: 0.3s; }
.notif-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInNotif {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notif-card i {
  color: var(--coral);
  font-size: 16px;
  flex-shrink: 0;
}

.emphasis-text {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
}

.highlight-keyword {
  color: var(--coral-deep);
  font-size: 20px;
}

.emotion-box {
  background: linear-gradient(135deg, #FFF8F0, #FFF0E5);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  margin-top: 28px;
  border: 1px solid var(--peach);
}

.emotion-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
  word-break: keep-all;
}

.emotion-highlight {
  font-size: 17px;
  color: var(--coral-deep);
  font-weight: 600;
  margin-bottom: 0 !important;
}

/* ================================ */
/* SECTION 3: Others                */
/* ================================ */
.section-others {
  background: #FAFAF8;
  padding: 48px 24px;
}

.others-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.other-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.other-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--sage);
  font-size: 18px;
}

.other-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.thought-bubble {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
}

.thought-bubble::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 48px;
  color: var(--peach);
  font-family: Georgia, serif;
  line-height: 1;
}

.thought-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  font-weight: 500;
  word-break: keep-all;
}

.thought-sub {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
}

/* ================================ */
/* SECTION 4: Growth                */
/* ================================ */
.section-growth {
  background: var(--white);
  padding: 48px 24px;
}

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

.growth-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--sage-light);
  color: var(--sage);
  margin-bottom: 12px;
}

.badge-gold {
  background: var(--gold-light);
  color: #B8860B;
}

.growth-start .story-text {
  margin-bottom: 0;
}

.growth-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.arrow-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--peach), var(--coral));
}

.arrow-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.arrow-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.5;
}

.arrow-dots span:nth-child(2) { opacity: 0.7; }
.arrow-dots span:nth-child(3) { opacity: 1; }

.revenue-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 12px 0 4px;
}

.revenue-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.revenue-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--coral-deep);
  line-height: 1;
  letter-spacing: -2px;
}

.revenue-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--coral-deep);
}

.growth-now .story-sub {
  font-size: 15px;
  color: var(--text-secondary);
}

/* ================================ */
/* SECTION 5: Mom Life              */
/* ================================ */
.section-mom-life {
  background: linear-gradient(180deg, #FFF8F0 0%, #FFFFFF 100%);
  padding: 48px 24px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-primary);
  word-break: keep-all;
}

.title-emphasis {
  color: var(--coral-deep);
}

.timeline-story {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.timeline-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 18px;
  flex-shrink: 0;
}

.timeline-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  word-break: keep-all;
}

.timeline-connector {
  width: 2px;
  height: 20px;
  background: var(--peach);
  margin: 0 auto;
}

.achievement-card {
  background: linear-gradient(135deg, #2D2016, #5C4033);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
}

.achievement-label {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.achievement-item:last-child {
  margin-bottom: 0;
}

.achievement-item i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.achievement-item span {
  color: rgba(255,255,255,0.9);
}

.achievement-item strong {
  color: var(--gold);
}

/* ================================ */
/* SECTION 6: Proof                 */
/* ================================ */
.section-proof {
  background: var(--white);
  padding: 48px 24px;
}

.question-box {
  text-align: center;
  margin-bottom: 28px;
}

.question-icon {
  margin-bottom: 16px;
}

.question-icon i {
  font-size: 40px;
  color: var(--peach);
}

.question-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  word-break: keep-all;
}

.question-text strong {
  color: var(--text-primary);
  font-size: 19px;
}

.answer-box {
  text-align: center;
  margin-bottom: 36px;
}

.answer-bold {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
}

.answer-highlight {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  color: var(--coral-deep);
  margin-top: 4px;
  position: relative;
}

.answer-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 10px;
  background: rgba(255, 138, 108, 0.2);
  border-radius: 4px;
  z-index: -1;
}

.proof-accounts {
  margin-top: 8px;
}

.proof-title {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.proof-title strong {
  color: var(--coral-deep);
}

.account-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #FAFAF8;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  border: 1px solid #F0EDE8;
}

.account-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 16px;
  flex-shrink: 0;
}

.account-info {
  flex: 1;
  min-width: 0;
}

.account-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.account-detail {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.account-revenue {
  text-align: right;
  flex-shrink: 0;
}

.rev-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--coral-deep);
}

.rev-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 1px;
}

.proof-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}

.proof-note i {
  color: var(--coral);
  margin-right: 4px;
}

/* ================================ */
/* SECTION 7: Failure               */
/* ================================ */
.section-failure {
  background: #F8F6F3;
  padding: 48px 24px;
}

.failure-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.fail-stat {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.fail-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 6px;
}

.fail-label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.failure-message {
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
  word-break: keep-all;
}

.failure-message strong {
  color: var(--text-primary);
}

.comeback-story {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comeback-before {
  padding: 24px;
  text-align: center;
  background: #F9F8F6;
}

.comeback-before p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  word-break: keep-all;
}

.strike-text {
  color: var(--text-light) !important;
  text-decoration: line-through;
  margin-top: 8px;
}

.comeback-divider {
  text-align: center;
  padding: 12px 0;
  position: relative;
}

.comeback-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--peach);
}

.comeback-divider span {
  position: relative;
  background: var(--white);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
}

.comeback-after {
  padding: 24px;
  text-align: center;
}

.comeback-bold {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 12px;
  word-break: keep-all;
}

.comeback-bold strong {
  color: var(--coral-deep);
}

.comeback-reason {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  word-break: keep-all;
}

.comeback-reason strong {
  color: var(--coral-deep);
}

/* ================================ */
/* SECTION 8: Students              */
/* ================================ */
.section-students {
  background: var(--white);
  padding: 48px 24px;
}

.student-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.result-bubble {
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  background: #F8F6F3;
  border: 1px solid #EDE9E3;
}

.result-amount {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.bubble-gold {
  background: linear-gradient(135deg, #FFF3D0, #FFE8A0);
  border-color: #FFD666;
}

.bubble-gold .result-amount {
  color: #8B6508;
  font-size: 19px;
}

.students-count {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.student-quote {
  background: var(--peach-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-bottom: 28px;
}

.student-quote p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown);
  word-break: keep-all;
}

.student-screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.screen-placeholder {
  aspect-ratio: 9/16;
  background: #F5F3F0;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed #E0DCD6;
}

.screen-placeholder i {
  font-size: 24px;
  color: var(--text-light);
}

.screen-placeholder span {
  font-size: 10px;
  color: var(--text-light);
  text-align: center;
  padding: 0 4px;
}

/* ================================ */
/* SECTION 9: FOMO                  */
/* ================================ */
.section-fomo {
  background: linear-gradient(135deg, #2D2016, #3D3026);
  padding: 48px 24px;
  color: var(--white);
}

.fomo-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.8);
}

.fomo-highlight {
  display: block;
  color: var(--gold);
  font-size: 26px;
  font-weight: 800;
  margin-top: 4px;
}

.fomo-people {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.fomo-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fomo-person i {
  font-size: 24px;
  color: var(--gold);
  opacity: 0.8;
}

.fomo-person span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.fomo-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  word-break: keep-all;
}

.fomo-text strong {
  color: var(--gold);
}

/* ================================ */
/* SECTION 10: Pipeline             */
/* ================================ */
.section-pipeline {
  background: var(--white);
  padding: 48px 24px;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.pipeline-item {
  background: #FAFAF8;
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid #F0EDE8;
  transition: transform 0.2s;
}

.pipeline-item:active {
  transform: scale(0.97);
}

.pipe-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--coral);
  font-size: 18px;
}

.pipeline-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.lifestyle-box {
  background: linear-gradient(135deg, #FFF8F0, #FFF0E5);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--peach);
}

.lifestyle-box p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--brown);
  margin-bottom: 16px;
  word-break: keep-all;
}

.lifestyle-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 28px;
}

/* ================================ */
/* SECTION 11: CTA                  */
/* ================================ */
.section-cta {
  background: linear-gradient(180deg, #FFF8F0 0%, #FFE4CC 100%);
  padding: 56px 24px 48px;
  text-align: center;
}

.cta-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 16px;
  word-break: keep-all;
}

.cta-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  word-break: keep-all;
}

.cta-question {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 32px;
  word-break: keep-all;
}

.cta-question strong {
  color: var(--coral-deep);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--coral-deep), #E85535);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-xl);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: pulse-glow 2s ease-in-out infinite;
}

.cta-button:hover,
.cta-button:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 107, 74, 0.45);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
  }
  50% {
    box-shadow: 0 8px 32px rgba(255, 107, 74, 0.55);
  }
}

.cta-button-text {
  white-space: nowrap;
}

.cta-button i {
  font-size: 14px;
}

.cta-notice {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

/* ================================ */
/* FOOTER                           */
/* ================================ */
.landing-footer {
  padding: 28px 24px;
  text-align: center;
  background: #F8F6F3;
  border-top: 1px solid #EDE9E3;
}

.landing-footer p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.footer-disclaimer {
  margin-top: 8px;
  font-size: 11px !important;
  color: #B8A89C !important;
}

/* ================================ */
/* Scroll Reveal Animations         */
/* ================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ================================ */
/* Responsive - Tablet+             */
/* ================================ */
@media (min-width: 481px) {
  .landing-wrapper {
    max-width: 480px;
  }
}

@media (max-width: 360px) {
  .section {
    padding: 40px 20px;
  }
  
  .intro-greeting {
    font-size: 23px;
  }
  
  .revenue-amount {
    font-size: 44px;
  }
  
  .fomo-title {
    font-size: 21px;
  }
  
  .fomo-highlight {
    font-size: 23px;
  }
  
  .cta-button {
    padding: 16px 28px;
    font-size: 15px;
  }

  .others-cards {
    flex-direction: column;
  }
}
