/* BASIC css start */
/* ================================================
   팬시피아 회사소개 모바일 페이지 - about_mo.css
   메이크샵 업로드용 (/design/about_mo.css)
   모바일 전용 (max-width: 768px 기준 설계)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jua&family=Noto+Sans+KR:wght@400;500;700&display=swap');

/* ──────────────────────────────────────
   CSS 변수
────────────────────────────────────── */
:root {
  --fp-coral:   #FF6B35;
  --fp-yellow:  #FFD23F;
  --fp-mint:    #06D6A0;
  --fp-sky:     #74C0FC;
  --fp-pink:    #FF9DC5;
  --fp-navy:    #1A1A2E;
  --fp-dark:    #2D2D44;
  --fp-gray:    #6B7280;
  --fp-light:   #FFF5F8;
  --fp-white:   #FFFFFF;
  --fp-cream:   #FFFAF4;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-full:999px;
  --sh-sm: 0 2px 10px rgba(26,26,46,0.08);
  --sh-md: 0 6px 20px rgba(26,26,46,0.12);
}

/* ──────────────────────────────────────
   리셋 & 기본
────────────────────────────────────── */
.fpm-wrap * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.fpm-wrap {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--fp-dark);
  background: var(--fp-cream);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 14px;
  max-width: 100vw;
}
.fpm-wrap img { max-width: 100%; }
.fpm-wrap a   { text-decoration: none; color: inherit; }

/* ──────────────────────────────────────
   공통 섹션
────────────────────────────────────── */
.fpm-section      { padding: 52px 20px; }
.fpm-label {
  display: inline-block;
  font-family: 'Jua', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fp-coral);
  background: rgba(255,107,53,0.1);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.fpm-title {
  font-family: 'Jua', sans-serif;
  font-size: 24px;
  color: var(--fp-navy);
  line-height: 1.35;
  margin-bottom: 10px;
  word-break: keep-all;
}
.fpm-title em { color: var(--fp-coral); font-style: normal; }
.fpm-desc {
  font-size: 13px;
  color: var(--fp-gray);
  line-height: 1.8;
  word-break: keep-all;
}

/* ──────────────────────────────────────
   01. 히어로
────────────────────────────────────── */
.fpm-hero {
  position: relative;
  background: linear-gradient(160deg, #FFF0F5 0%, #FFFBEA 55%, #F0FFF8 100%);
  padding: 52px 20px 44px;
  overflow: hidden;
  text-align: center;
}
.fpm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,53,0.1) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
}
.fpm-hero-blob1 {
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,157,197,0.4) 0%, transparent 70%);
  top: -80px; right: -60px;
  border-radius: 50%;
  animation: fpm-float 7s ease-in-out infinite;
}
.fpm-hero-blob2 {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,210,63,0.38) 0%, transparent 70%);
  bottom: -60px; left: -50px;
  border-radius: 50%;
  animation: fpm-float 9s ease-in-out infinite reverse;
}
@keyframes fpm-float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(10px,-15px) scale(1.06); }
}

.fpm-hero-inner { position: relative; z-index: 1; }

.fpm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--fp-coral);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.fpm-hero-badge::before { content: '★'; font-size: 10px; }

.fpm-hero-title {
  font-family: 'Jua', sans-serif;
  font-size: 30px;
  color: var(--fp-navy);
  line-height: 1.3;
  margin-bottom: 16px;
  word-break: keep-all;
}
.fpm-hero-title .hl {
  color: var(--fp-coral);
  position: relative;
  display: inline-block;
}
.fpm-hero-title .hl::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 0;
  width: 100%; height: 7px;
  background: var(--fp-yellow);
  border-radius: 3px;
  opacity: 0.55;
  z-index: -1;
}

.fpm-hero-sub {
  font-size: 13px;
  color: #555568;
  line-height: 1.9;
  margin-bottom: 28px;
  word-break: keep-all;
}

.fpm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--fp-coral);
  color: white;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: var(--r-full);
  box-shadow: 0 8px 20px rgba(255,107,53,0.35);
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  transition: transform 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
.fpm-btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

/* 히어로 하단 뱃지 행 */
.fpm-hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.fpm-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1.5px solid rgba(255,107,53,0.2);
  color: var(--fp-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
}

/* ──────────────────────────────────────
   02. 숫자 Stats
────────────────────────────────────── */
.fpm-stats {
  background: var(--fp-navy);
  padding: 44px 20px;
  position: relative;
  overflow: hidden;
}
.fpm-stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}
.fpm-stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
.fpm-stat {
  background: rgba(255,255,255,0.03);
  padding: 28px 16px;
  text-align: center;
}
.fpm-stat-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
  animation: fpm-bounce 2.2s ease-in-out infinite;
}
.fpm-stat:nth-child(2) .fpm-stat-icon { animation-delay: 0.3s; }
.fpm-stat:nth-child(3) .fpm-stat-icon { animation-delay: 0.6s; }
.fpm-stat:nth-child(4) .fpm-stat-icon { animation-delay: 0.9s; }
@keyframes fpm-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.fpm-stat-num {
  font-family: 'Jua', sans-serif;
  font-size: 34px;
  color: var(--fp-yellow);
  line-height: 1;
  margin-bottom: 4px;
}
.fpm-stat-unit {
  font-family: 'Jua', sans-serif;
  font-size: 17px;
  color: var(--fp-coral);
}
.fpm-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  font-weight: 500;
}
.fpm-stat-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
}

/* ──────────────────────────────────────
   03. 브랜드 스토리
────────────────────────────────────── */
.fpm-story { background: var(--fp-white); }

.fpm-story-card {
  background: linear-gradient(135deg, var(--fp-coral), #FF8C5A);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  color: white;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.fpm-story-card::after {
  content: '🎪';
  position: absolute;
  font-size: 80px;
  right: -10px; bottom: -10px;
  opacity: 0.12;
  transform: rotate(10deg);
  pointer-events: none;
}
.fpm-story-card-num {
  font-family: 'Jua', sans-serif;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 6px;
}
.fpm-story-card-txt {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.8;
}

.fpm-story-quote {
  font-family: 'Jua', sans-serif;
  font-size: 16px;
  color: var(--fp-navy);
  line-height: 1.65;
  padding: 14px 16px;
  border-left: 4px solid var(--fp-coral);
  background: rgba(255,107,53,0.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 18px;
  word-break: keep-all;
}
.fpm-story-p {
  font-size: 13px;
  color: var(--fp-gray);
  line-height: 1.85;
  margin-bottom: 14px;
  word-break: keep-all;
}
.fpm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.fpm-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
}
.fpm-tag--coral  { background: rgba(255,107,53,0.1);  color: var(--fp-coral); }
.fpm-tag--yellow { background: rgba(255,210,63,0.15); color: #9A7200; }
.fpm-tag--mint   { background: rgba(6,214,160,0.1);   color: #038B6E; }
.fpm-tag--sky    { background: rgba(116,192,252,0.15);color: #1E78C0; }

/* ──────────────────────────────────────
   04. 강점 카드 (세로 스크롤)
────────────────────────────────────── */
.fpm-features { background: var(--fp-light); }
.fpm-features-hd { text-align: center; margin-bottom: 28px; }

.fpm-feat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fpm-feat-card {
  background: var(--fp-white);
  border-radius: var(--r-md);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--sh-sm);
  border-top: 4px solid transparent;
  transition: transform 0.2s;
}
.fpm-feat-card:active { transform: scale(0.98); }
.fpm-feat-card--coral  { border-top-color: var(--fp-coral); }
.fpm-feat-card--yellow { border-top-color: var(--fp-yellow); }
.fpm-feat-card--mint   { border-top-color: var(--fp-mint); }
.fpm-feat-card--sky    { border-top-color: var(--fp-sky); }
.fpm-feat-card--pink   { border-top-color: var(--fp-pink); }
.fpm-feat-card--navy   { border-top-color: var(--fp-navy); }

.fpm-feat-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.fpm-feat-card--coral  .fpm-feat-icon { background: rgba(255,107,53,0.1); }
.fpm-feat-card--yellow .fpm-feat-icon { background: rgba(255,210,63,0.12); }
.fpm-feat-card--mint   .fpm-feat-icon { background: rgba(6,214,160,0.1); }
.fpm-feat-card--sky    .fpm-feat-icon { background: rgba(116,192,252,0.12); }
.fpm-feat-card--pink   .fpm-feat-icon { background: rgba(255,157,197,0.12); }
.fpm-feat-card--navy   .fpm-feat-icon { background: rgba(26,26,46,0.06); }

.fpm-feat-body h3 {
  font-family: 'Jua', sans-serif;
  font-size: 16px;
  color: var(--fp-navy);
  margin-bottom: 5px;
}
.fpm-feat-body p {
  font-size: 12px;
  color: var(--fp-gray);
  line-height: 1.75;
  word-break: keep-all;
}

/* ──────────────────────────────────────
   05. 고객 유형
────────────────────────────────────── */
.fpm-customers { background: var(--fp-white); }
.fpm-customers-hd { text-align: center; margin-bottom: 28px; }

.fpm-cust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fpm-cust-card {
  background: var(--fp-cream);
  border: 1.5px solid #F0EDE8;
  border-radius: var(--r-md);
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s;
}
.fpm-cust-card:active { border-color: var(--fp-coral); }
.fpm-cust-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}
.fpm-cust-card h3 {
  font-family: 'Jua', sans-serif;
  font-size: 13px;
  color: var(--fp-navy);
  margin-bottom: 6px;
  line-height: 1.4;
}
.fpm-cust-card p {
  font-size: 11px;
  color: var(--fp-gray);
  line-height: 1.65;
  word-break: keep-all;
  margin-bottom: 8px;
}
.fpm-kws {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.fpm-kw {
  font-size: 10px;
  font-weight: 700;
  color: var(--fp-coral);
  background: rgba(255,107,53,0.08);
  padding: 2px 8px;
  border-radius: var(--r-full);
}

/* ──────────────────────────────────────
   06. 구매 프로세스 (세로 타임라인)
────────────────────────────────────── */
.fpm-process { background: linear-gradient(160deg, #FFF0F8 0%, #FFFBEA 100%); }
.fpm-process-hd { text-align: center; margin-bottom: 32px; }

.fpm-timeline {
  position: relative;
  padding-left: 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fpm-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--fp-coral), var(--fp-yellow), var(--fp-mint));
  border-radius: 2px;
}

.fpm-step {
  position: relative;
  padding-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.fpm-step:last-child { padding-bottom: 0; }

.fpm-step-dot {
  position: absolute;
  left: -40px;
  top: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--sh-md);
  z-index: 1;
}
.fpm-step:nth-child(1) .fpm-step-dot { background: var(--fp-coral); }
.fpm-step:nth-child(2) .fpm-step-dot { background: var(--fp-yellow); }
.fpm-step:nth-child(3) .fpm-step-dot { background: var(--fp-mint); }
.fpm-step:nth-child(4) .fpm-step-dot { background: var(--fp-sky); }
.fpm-step:nth-child(5) .fpm-step-dot { background: var(--fp-pink); }

.fpm-step-body {
  background: var(--fp-white);
  border-radius: var(--r-md);
  padding: 16px 18px;
  box-shadow: var(--sh-sm);
  flex: 1;
}
.fpm-step-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--fp-coral);
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.fpm-step-title {
  font-family: 'Jua', sans-serif;
  font-size: 16px;
  color: var(--fp-navy);
  margin-bottom: 4px;
}
.fpm-step-desc {
  font-size: 12px;
  color: var(--fp-gray);
  line-height: 1.65;
}

/* ──────────────────────────────────────
   07. 미션·비전·약속
────────────────────────────────────── */
.fpm-values { background: var(--fp-white); }
.fpm-values-hd { text-align: center; margin-bottom: 28px; }

.fpm-val-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fpm-val-card {
  border-radius: var(--r-lg);
  padding: 32px 22px;
  position: relative;
  overflow: hidden;
  color: white;
}
.fpm-val-card--mission { background: linear-gradient(135deg, var(--fp-navy), #2D2D60); }
.fpm-val-card--vision  { background: linear-gradient(135deg, var(--fp-coral), #FF8C5A); }
.fpm-val-card--promise { background: linear-gradient(135deg, #FFD23F, #FFBD12); color: var(--fp-navy); }
.fpm-val-bg {
  position: absolute;
  font-size: 90px;
  right: -10px; bottom: -10px;
  opacity: 0.08;
  transform: rotate(-10deg);
  pointer-events: none;
}
.fpm-val-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.fpm-val-lbl  {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  opacity: 0.6; display: block; margin-bottom: 8px;
}
.fpm-val-card h3 {
  font-family: 'Jua', sans-serif;
  font-size: 20px; line-height: 1.4;
  margin-bottom: 12px; word-break: keep-all;
}
.fpm-val-card p {
  font-size: 13px; opacity: 0.82;
  line-height: 1.8; word-break: keep-all;
}

/* ──────────────────────────────────────
   08. 연락처 배너
────────────────────────────────────── */
.fpm-contact {
  background: linear-gradient(135deg, var(--fp-coral), #FF8C5A);
  padding: 52px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fpm-contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}
.fpm-contact-inner { position: relative; z-index: 1; }
.fpm-contact h2 {
  font-family: 'Jua', sans-serif;
  font-size: 24px; color: white;
  margin-bottom: 12px; word-break: keep-all;
  line-height: 1.4;
}
.fpm-contact > .fpm-contact-inner > p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  line-height: 1.8;
}
.fpm-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fpm-contact-card {
  display: block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--r-md);
  padding: 18px 12px;
  text-align: center;
  color: white;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s, transform 0.15s;
}
.fpm-contact-card:active {
  background: rgba(255,255,255,0.28);
  transform: scale(0.96);
}
.fpm-cc-icon  { font-size: 22px; margin-bottom: 6px; }
.fpm-cc-label {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px; margin-bottom: 3px;
}
.fpm-cc-val {
  font-family: 'Jua', sans-serif;
  font-size: 13px; color: white;
}

/* 사업자 푸터 -->*/
.fpm-biz {
  background: #111827;
  padding: 28px 20px;
  text-align: center;
}
.fpm-biz p {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 2;
  font-family: 'Noto Sans KR', sans-serif;
}
.fpm-biz small {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  margin-top: 6px;
}

/* ──────────────────────────────────────
   스크롤 등장 애니메이션
────────────────────────────────────── */
.fpm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fpm-reveal.fpm-visible {
  opacity: 1;
  transform: translateY(0);
}
.fpm-d1 { transition-delay: 0.08s; }
.fpm-d2 { transition-delay: 0.16s; }
.fpm-d3 { transition-delay: 0.24s; }
.fpm-d4 { transition-delay: 0.32s; }

/* ──────────────────────────────────────
   고정 하단 CTA 버튼
────────────────────────────────────── */
.fpm-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: white;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}
.fpm-sticky-cta.fpm-show { transform: translateY(0); }
.fpm-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--fp-coral);
  color: white;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: var(--r-full);
  box-shadow: 0 6px 18px rgba(255,107,53,0.35);
}
/* BASIC css end */

