/* ============================================================
   Risograph Edition · Oneday_Tera-funnel
   바이브코딩 원데이클래스 · 챗사피엔스AI평생교육원
   ============================================================ */

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

:root {
  --paper: #fef3e8;
  --paper-2: #fde9d4;
  --paper-3: #fff;
  --ink: #2d1810;
  --ink-soft: #5c3a26;
  --ink-light: #8c6649;
  --pink: #ec4899;
  --teal: #0d9488;
  --orange: #c2410c;
  --orange-soft: #ea580c;
  --yellow: #fbbf24;
  --rule: #c2410c;

  --shadow-card: 4px 4px 0 var(--ink);
  --shadow-card-lg: 6px 6px 0 var(--ink);
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 100px;

  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Gowun Batang', serif;
  --font-hand: 'Caveat', cursive;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* 그레인 텍스처 (전역) */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(circle, rgba(0,0,0,.05) 1px, transparent 1px),
    radial-gradient(circle, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
  opacity: .8;
}

em {
  font-family: var(--font-hand);
  font-style: normal;
  color: var(--pink);
  font-weight: 700;
  font-size: 1.08em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ─── 섹션 헤더 공통 ─── */
.section-header { text-align: center; margin-bottom: 50px; }
.section-eyebrow {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--pink);
  font-weight: 600;
  display: inline-block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 4px;
  line-height: 1.25;
}

/* ════════════════════════════════════════════════════════
   상단 배너
   ════════════════════════════════════════════════════════ */
.top-banner {
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; position: relative; z-index: 60;
}
.banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 13px; flex-wrap: wrap;
}
.banner-leaf { color: var(--yellow); font-size: 16px; }
.banner-cta {
  font-family: var(--font-hand); font-size: 16px; color: var(--yellow); text-decoration: none; font-weight: 700;
}
.banner-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--paper); font-size: 14px; cursor: pointer; opacity: .6;
}
.banner-close:hover { opacity: 1; }

/* ════════════════════════════════════════════════════════
   네비게이션
   ════════════════════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(254,243,232,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194,65,12,.15);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-leaf { color: var(--orange); font-size: 22px; }
.nav-logo .logo-text {
  font-family: var(--font-serif); font-weight: 700; font-size: 17px; letter-spacing: -0.3px; color: var(--ink);
}
.nav-cta-btn {
  padding: 10px 22px; background: var(--ink); color: var(--paper);
  text-decoration: none; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 13px;
  transition: transform .15s;
}
.nav-cta-btn:hover { transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}

/* 히어로 배경 사진 (오프라인 수업 장면) — 전체 너비 */
.hero-bg-photo {
  position: absolute; inset: 0;
  background-image: url('/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
/* 좌/우 가장자리 페이퍼 페이드 + 하단 페이드 */
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, transparent 12%, transparent 88%, var(--paper) 100%),
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(254,243,232,.4) 90%, var(--paper) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-blob {
  position: absolute; mix-blend-mode: multiply; border-radius: 50%;
  filter: blur(2px); pointer-events: none; z-index: 2;
}
.blob-pink {
  width: 400px; height: 400px;
  background: var(--pink);
  top: -80px; right: 4%; opacity: .35;
}
.blob-teal {
  width: 240px; height: 240px;
  background: var(--teal);
  top: 200px; left: 2%; opacity: .25;
}
.blob-yellow {
  width: 320px; height: 320px;
  background: var(--yellow);
  bottom: -60px; right: 18%; opacity: .4;
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-hand); font-size: 26px;
  color: var(--orange); font-weight: 700;
  background: rgba(254,243,232,.85);
  padding: 4px 14px; border-radius: 100px;
  border: 1px dashed var(--orange);
  backdrop-filter: blur(4px);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1.2; letter-spacing: -1px;
  font-weight: 700; margin-top: 8px;
  text-shadow: 0 2px 0 rgba(254,243,232,.6), 0 0 20px rgba(254,243,232,.4);
}
.hero-sub {
  margin-top: 22px; font-size: 17px;
  color: var(--ink); max-width: 580px;
  font-weight: 600;
  background: rgba(254,243,232,.8);
  padding: 14px 18px; border-radius: 16px;
  border-left: 3px solid var(--orange);
  backdrop-filter: blur(6px);
  display: inline-block;
}

.hero-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px;
}
@media (max-width: 800px) { .hero-cards { grid-template-columns: 1fr; } }

.hero-card {
  padding: 22px; background: var(--paper-3);
  border: 1px dashed var(--orange); border-radius: 18px;
  position: relative; transform: rotate(-1deg);
}
.hero-card:nth-child(2) { transform: rotate(0.6deg); border-color: var(--teal); }
.hero-card:nth-child(3) { transform: rotate(-0.4deg); border-color: var(--pink); }
.hero-card .stamp {
  font-family: var(--font-hand); font-size: 16px; color: var(--orange);
}
.hero-card:nth-child(2) .stamp { color: var(--teal); }
.hero-card:nth-child(3) .stamp { color: var(--pink); }
.hero-card h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  margin-top: 6px; letter-spacing: -0.3px;
}
.hero-card p {
  font-family: var(--font-hand); font-size: 18px; color: var(--ink-soft); margin-top: 6px;
}

.hero-cta-group { margin-top: 40px; }
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 30px; background: var(--ink); color: var(--paper);
  text-decoration: none; border-radius: var(--radius-pill);
  font-weight: 800; font-size: 15px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: var(--shadow-card);
}
.cta-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.cta-primary .cta-arrow { font-size: 18px; }
.cta-pulse { animation: cta-pulse 2.5s ease-in-out infinite; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: var(--shadow-card); }
  50% { box-shadow: 4px 4px 0 var(--ink), 0 0 0 8px rgba(236,72,153,.15); }
}

.cta-secondary-group {
  display: inline-flex; gap: 10px; margin-top: 14px; flex-wrap: wrap;
}
.cta-secondary {
  padding: 12px 20px; border: 1.5px solid var(--ink); color: var(--ink);
  text-decoration: none; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 13px;
  background: transparent;
}
.cta-secondary:hover { background: var(--ink); color: var(--paper); }

.cta-note {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-hand); font-size: 18px;
  color: var(--ink); font-weight: 600;
  background: rgba(254,243,232,.85);
  padding: 4px 14px; border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ════════════════════════════════════════════════════════
   섹션 공통
   ════════════════════════════════════════════════════════ */
section { padding: 80px 0; position: relative; }
section .container { position: relative; z-index: 2; }

/* ════════════════════════════════════════════════════════
   문제 섹션
   ════════════════════════════════════════════════════════ */
.problem-section { background: var(--paper-2); }
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 800px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  padding: 28px; background: var(--paper-3); border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-card);
}
.problem-card:nth-child(odd) { transform: rotate(-0.3deg); }
.problem-card:nth-child(even) { transform: rotate(0.3deg); }
.problem-icon {
  font-size: 36px; margin-bottom: 14px;
}
.problem-card h3 {
  font-family: var(--font-serif); font-size: 19px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: -0.3px;
}
.problem-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   손길 (기능) 섹션
   ════════════════════════════════════════════════════════ */
.touches-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 800px) { .touches-grid { grid-template-columns: 1fr; } }
.touch-card {
  padding: 28px 22px; background: var(--paper-3); border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-card);
  position: relative;
}
.touch-card:nth-child(odd) { transform: rotate(-0.4deg); }
.touch-card:nth-child(even) { transform: rotate(0.4deg); }
.touch-num {
  font-family: var(--font-hand); font-size: 38px; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.touch-card:nth-child(2) .touch-num { color: var(--teal); }
.touch-card:nth-child(3) .touch-num { color: var(--pink); }
.touch-card:nth-child(4) .touch-num { color: var(--yellow); }
.touch-card:nth-child(5) .touch-num { color: var(--teal); }
.touch-card:nth-child(6) .touch-num { color: var(--orange); }
.touch-card h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  margin-top: 8px; letter-spacing: -0.3px;
}
.touch-card p { margin-top: 8px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   수강생 작품 갤러리
   ════════════════════════════════════════════════════════ */
.showcase-section {
  background: var(--paper);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.showcase-section::before {
  content: ''; position: absolute; top: 80px; right: -100px;
  width: 280px; height: 280px;
  background: var(--pink); mix-blend-mode: multiply; border-radius: 50%;
  opacity: .2; filter: blur(2px); pointer-events: none;
}
.showcase-section::after {
  content: ''; position: absolute; bottom: 60px; left: -80px;
  width: 220px; height: 220px;
  background: var(--teal); mix-blend-mode: multiply; border-radius: 50%;
  opacity: .2; filter: blur(2px); pointer-events: none;
}

.showcase-intro {
  margin-top: 16px; font-size: 16px; color: var(--ink-soft); line-height: 1.7;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.showcase-intro strong { color: var(--orange); font-weight: 700; }

.showcase-stats {
  display: flex; justify-content: center; gap: 32px; margin: 24px 0 40px;
  flex-wrap: wrap;
}
.showcase-stat { text-align: center; }
.showcase-stat strong {
  display: block; font-family: var(--font-serif); font-size: 38px; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.showcase-stat span {
  font-family: var(--font-hand); font-size: 16px; color: var(--ink-soft);
  margin-top: 4px; display: block;
}

.showcase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .showcase-grid { grid-template-columns: 1fr; } }

.showcase-card {
  display: block;
  background: var(--paper-3);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  text-decoration: none; color: inherit;
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
  position: relative;
}
.showcase-card:nth-child(odd) { transform: rotate(-0.4deg); }
.showcase-card:nth-child(even) { transform: rotate(0.4deg); }
.showcase-card:hover {
  transform: translate(-3px, -3px) rotate(0deg);
  box-shadow: 8px 8px 0 var(--ink);
}

.showcase-thumb {
  width: 100%; aspect-ratio: 16/10;
  background: var(--paper);
  overflow: hidden; position: relative;
  border-bottom: 1.5px solid var(--ink);
}
.showcase-thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
  transition: transform .3s;
}
.showcase-card:hover .showcase-thumb img { transform: scale(1.04); }

.showcase-meta { padding: 18px 20px 20px; }
.showcase-badge {
  display: inline-block;
  padding: 4px 10px; font-size: 11px; font-weight: 700;
  background: var(--paper); border: 1px dashed var(--orange);
  border-radius: 100px; color: var(--orange);
  font-family: var(--font-sans);
}
.showcase-meta h3 {
  font-family: var(--font-serif); font-size: 19px; font-weight: 700;
  margin-top: 10px; letter-spacing: -0.3px;
}
.showcase-meta p {
  font-size: 13.5px; color: var(--ink-soft); line-height: 1.6;
  margin-top: 8px;
}
.showcase-link {
  display: inline-block; margin-top: 12px;
  font-family: var(--font-hand); font-size: 17px; font-weight: 700;
  color: var(--pink);
}

.showcase-cta-wrap {
  margin-top: 50px; text-align: center;
  position: relative;
}
.showcase-cta-note {
  font-family: var(--font-hand); font-size: 20px; color: var(--ink-soft);
  margin-bottom: 16px;
}
.showcase-cta-note strong { color: var(--orange); }
.showcase-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 22px 38px;
  background: var(--ink); color: var(--paper);
  text-decoration: none; border-radius: 100px;
  font-weight: 800; font-size: 17px;
  box-shadow: 6px 6px 0 var(--orange), 0 0 0 0 transparent;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.showcase-cta-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--orange);
}
.showcase-cta-arrow {
  font-size: 22px; transition: transform .15s;
}
.showcase-cta-btn:hover .showcase-cta-arrow { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════
   일정 카드
   ════════════════════════════════════════════════════════ */
.schedule-section { background: var(--paper-2); }
.schedule-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.schedule-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .schedule-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-grid-4 { grid-template-columns: 1fr; }
}

.schedule-card {
  padding: 30px 24px; background: var(--paper-3); border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-card-lg);
  position: relative;
}
.schedule-card-featured {
  background: var(--yellow); transform: rotate(-1deg);
}
.schedule-card-closed {
  opacity: .55; transform: rotate(0.5deg);
  background: repeating-linear-gradient(45deg, var(--paper-3), var(--paper-3) 8px, #f0e8df 8px, #f0e8df 16px);
}
.schedule-card-upcoming {
  background: #f0fdfa; border-style: dashed; transform: rotate(-0.6deg);
}
.schedule-ribbon {
  position: absolute; top: -14px; right: 16px;
  padding: 5px 14px; background: var(--ink); color: var(--paper);
  border-radius: var(--radius-pill);
  font-family: var(--font-hand); font-size: 16px; font-weight: 700;
  transform: rotate(2deg);
  z-index: 3;
}
.schedule-ribbon-closed {
  background: #999; transform: rotate(-2deg);
}
.schedule-ribbon-upcoming {
  background: var(--teal);
}
.schedule-date {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px;
}
.schedule-month {
  font-family: var(--font-hand); font-size: 22px; color: var(--ink-soft);
}
.schedule-day {
  font-family: var(--font-serif); font-size: 76px; font-weight: 700; color: var(--ink);
  line-height: 1; letter-spacing: -2px;
}
.schedule-dow {
  font-family: var(--font-hand); font-size: 22px; color: var(--orange); font-weight: 600;
}
.schedule-card-featured .schedule-dow { color: var(--ink); }
.schedule-card-upcoming .schedule-dow { color: var(--teal); }
.schedule-title-card {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  margin-top: 14px; letter-spacing: -0.3px; line-height: 1.35;
}
.schedule-subtitle {
  font-family: var(--font-hand); font-size: 18px; color: var(--ink-soft); margin-top: 6px;
}
.schedule-info {
  list-style: none; padding: 0; margin: 18px 0; font-size: 13px; line-height: 1.9;
}
.schedule-info li::before { content: '◐ '; color: var(--orange); margin-right: 4px; font-weight: 700; }
.schedule-card-featured .schedule-info li::before { color: var(--ink); }
.schedule-card-upcoming .schedule-info li::before { color: var(--teal); }
.schedule-cta {
  display: block; text-align: center; padding: 14px;
  border-radius: var(--radius-pill);
  background: var(--ink); color: var(--paper); text-decoration: none;
  font-weight: 700; font-size: 14px; margin-top: 18px;
  transition: transform .15s;
}
.schedule-cta:hover { transform: translateY(-2px); }
.schedule-cta-disabled {
  background: #999; cursor: not-allowed; pointer-events: none;
}

.schedule-note {
  text-align: center; margin-top: 40px;
  font-family: var(--font-hand); font-size: 18px; color: var(--orange);
}

/* ════════════════════════════════════════════════════════
   편지 (testimonial)
   ════════════════════════════════════════════════════════ */
.letters-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 800px) { .letters-grid { grid-template-columns: 1fr; } }
.letter-card {
  padding: 28px 24px; background: var(--paper-3); border-radius: 18px;
  border: 1px solid var(--ink); position: relative;
}
.letter-card:nth-child(odd) { transform: rotate(-0.4deg); }
.letter-card:nth-child(even) { transform: rotate(0.4deg); }
.letter-card::before {
  content: '"'; position: absolute; top: -12px; left: 18px;
  font-family: var(--font-serif); font-size: 64px; color: var(--orange); line-height: 1;
}
.letter-card blockquote {
  font-family: var(--font-serif); font-size: 14px; line-height: 1.85; color: var(--ink-soft);
  margin-top: 18px;
}
.letter-card cite {
  display: block; margin-top: 16px; padding-top: 12px;
  border-top: 1px dashed var(--orange);
  font-family: var(--font-hand); font-size: 18px; font-style: normal; color: var(--ink); font-weight: 600;
}

/* ════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════ */
.faq-section { background: var(--paper-2); }
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: grid; gap: 14px;
}
.faq-item {
  background: var(--paper-3); border-radius: 18px;
  border: 1px solid var(--ink);
  cursor: pointer; overflow: hidden;
  transition: transform .15s;
}
.faq-item:hover { transform: translateX(2px); }
.faq-q {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 24px;
  font-family: var(--font-serif); font-size: 16px; font-weight: 700;
}
.faq-q .faq-icon {
  font-family: var(--font-hand); color: var(--pink); font-weight: 700; font-size: 22px;
}
.faq-q .faq-arrow {
  margin-left: auto; font-family: var(--font-hand); font-size: 24px; color: var(--orange);
  transition: transform .25s;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px 0 60px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 22px;
}

/* ════════════════════════════════════════════════════════
   Final CTA
   ════════════════════════════════════════════════════════ */
.final-cta {
  padding: 90px 24px;
  margin: 0 24px;
  background: var(--ink); color: var(--paper);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative; overflow: hidden;
}
.final-blob {
  position: absolute; mix-blend-mode: screen; border-radius: 50%;
}
.final-blob-pink {
  width: 280px; height: 280px;
  background: var(--pink);
  top: -100px; right: -100px; opacity: .4;
}
.final-blob-teal {
  width: 240px; height: 240px;
  background: var(--teal);
  bottom: -80px; left: -80px; opacity: .35;
}
.final-cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.final-eyebrow { color: var(--yellow); }
.final-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(34px, 5vw, 58px); line-height: 1.2; letter-spacing: -1px;
  margin-top: 6px;
}
.final-title em { color: var(--yellow); }
.final-desc { margin-top: 16px; font-size: 15px; opacity: .85; }

.final-cta-buttons { margin-top: 30px; }
.cta-primary.cta-large {
  background: var(--yellow); color: var(--ink);
  padding: 20px 36px; font-size: 16px; font-weight: 800;
  box-shadow: 4px 4px 0 var(--paper);
}
.cta-primary.cta-large:hover { box-shadow: 6px 6px 0 var(--paper); transform: translate(-2px,-2px); }
.final-cta-row { margin-top: 16px; }
.final-cta-sm {
  font-family: var(--font-hand); font-size: 18px;
  color: var(--yellow); text-decoration: none; opacity: .85;
}
.final-cta-sm:hover { opacity: 1; }

/* ════════════════════════════════════════════════════════
   신청 폼
   ════════════════════════════════════════════════════════ */
.form-section {
  padding: 80px 24px;
  background: var(--paper);
}
.form-intro {
  margin-top: 14px; font-family: var(--font-hand); font-size: 20px; color: var(--ink-soft);
}
.apply-form {
  max-width: 580px; margin: 0 auto;
  background: var(--paper-3);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card-lg);
  transform: rotate(-0.3deg);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px;
  font-family: var(--font-serif);
}
.form-group .required,
.privacy-check-text .required {
  color: #dc2626;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85em;
  margin-left: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--orange);
  border-radius: 12px;
  font-family: var(--font-sans); font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--ink); background: var(--paper-3);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-hint {
  display: block; margin-top: 6px;
  font-family: var(--font-hand); font-size: 14px; color: var(--ink-light);
}

/* 개인정보 동의 */
.privacy-consent-box {
  background: var(--paper); border: 1px dashed var(--orange);
  border-radius: 14px; padding: 18px;
  margin-bottom: 22px;
}
.privacy-consent-title {
  font-family: var(--font-serif); font-size: 14px; font-weight: 700;
  color: var(--orange); margin-bottom: 12px;
}
.privacy-table {
  width: 100%; border-collapse: collapse;
  font-size: 12px; margin-bottom: 12px;
}
.privacy-table th, .privacy-table td {
  border: 1px solid #d4b591; padding: 6px 8px; text-align: center;
  background: var(--paper-3);
}
.privacy-table th {
  background: #fde9d4; font-weight: 700; font-size: 11px; color: var(--ink-soft);
}
.privacy-consent-note {
  font-size: 11px; color: var(--ink-soft); margin-bottom: 12px; line-height: 1.6;
}
.privacy-check-label {
  display: flex; align-items: center; gap: 8px; cursor: pointer; user-select: none;
}
.privacy-check-label input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; cursor: pointer;
}
.privacy-check-text {
  font-size: 14px; font-weight: 700; color: var(--ink); font-family: var(--font-serif);
}

.form-submit-btn {
  width: 100%; padding: 18px;
  background: var(--ink); color: var(--paper);
  border: none; border-radius: var(--radius-pill);
  font-size: 16px; font-weight: 800; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  font-family: var(--font-sans);
}
.form-submit-btn:hover {
  transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--orange);
}
.form-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

/* 폼 제출 성공 */
.form-success {
  max-width: 580px; margin: 0 auto;
  text-align: center; padding: 50px 32px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  transform: rotate(0.5deg);
}
.success-icon {
  font-size: 56px; color: var(--pink); margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-serif); font-size: 24px; font-weight: 700; letter-spacing: -0.5px;
}
.form-success p {
  margin-top: 10px; font-size: 15px; color: var(--ink-soft);
}
.form-success p strong { color: var(--ink); }
.success-note {
  margin-top: 16px; font-family: var(--font-hand); font-size: 18px;
  color: var(--orange);
}

/* ════════════════════════════════════════════════════════
   푸터
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink); color: rgba(254,243,232,.7);
  padding: 56px 24px 30px; text-align: center;
  position: relative; z-index: 5;
}
.footer-inner { max-width: 700px; margin: 0 auto; }
.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--paper);
  margin-bottom: 10px;
}
.footer-logo span:first-child { color: var(--yellow); }
.footer-desc {
  font-family: var(--font-hand); font-size: 18px; color: var(--yellow);
  margin-bottom: 28px;
}

.footer-biz {
  border-top: 1px solid rgba(254,243,232,.15);
  border-bottom: 1px solid rgba(254,243,232,.15);
  padding: 24px 0; margin-bottom: 24px; text-align: left;
}
.footer-biz-name {
  font-family: var(--font-serif); font-size: 14px; font-weight: 700; color: var(--paper);
  margin-bottom: 14px; text-align: center; letter-spacing: 0.3px;
}
.footer-biz-info {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.footer-biz-info li {
  display: flex; align-items: baseline; gap: 6px; font-size: 12px;
}
.biz-label {
  color: rgba(254,243,232,.4); white-space: nowrap; min-width: 64px; font-size: 11px;
}
.biz-value { color: rgba(254,243,232,.85); }
.biz-value a { color: rgba(254,243,232,.85); text-decoration: none; }
.biz-value a:hover { color: var(--yellow); text-decoration: underline; }
@media (max-width: 460px) {
  .footer-biz-info { grid-template-columns: 1fr; }
}

.footer-copy {
  font-family: var(--font-hand); font-size: 16px; color: var(--yellow); opacity: .8;
}

/* 제휴링크 발급 (히든) */
.affiliate-trigger {
  font-size: 10px; color: rgba(254,243,232,.15); cursor: pointer;
  margin-top: 24px; user-select: none; letter-spacing: 1px;
}
.affiliate-trigger:hover { color: rgba(254,243,232,.4); }
.affiliate-panel {
  display: none; margin-top: 14px; max-width: 380px;
  margin-left: auto; margin-right: auto;
  padding: 16px; background: rgba(254,243,232,.06); border-radius: 14px;
}
.affiliate-panel.open { display: block; }
.affiliate-inner {
  display: flex; gap: 8px; margin-bottom: 8px;
}
.affiliate-inner input {
  flex: 1; padding: 10px 14px;
  background: rgba(254,243,232,.1); color: var(--paper);
  border: 1px solid rgba(254,243,232,.2); border-radius: 10px;
  font-size: 13px;
}
.affiliate-inner input::placeholder { color: rgba(254,243,232,.4); }
.affiliate-inner button {
  padding: 10px 16px;
  background: var(--yellow); color: var(--ink); border: none; border-radius: 10px;
  font-weight: 700; font-size: 13px; cursor: pointer;
}
.affiliate-result {
  display: flex; gap: 8px; margin-top: 8px;
}
.affiliate-result input {
  flex: 1; padding: 10px 14px;
  background: rgba(254,243,232,.1); color: var(--paper);
  border: 1px solid rgba(254,243,232,.2); border-radius: 10px;
  font-size: 12px;
}
.affiliate-result button {
  padding: 10px 14px;
  background: rgba(254,243,232,.15); color: var(--paper);
  border: 1px solid rgba(254,243,232,.2); border-radius: 10px;
  font-weight: 700; font-size: 13px; cursor: pointer;
}
.affiliate-msg {
  font-size: 11px; margin-top: 8px; min-height: 14px;
  color: var(--yellow); font-family: var(--font-hand); font-size: 14px;
}

/* ───────────────────────────────────────
   Definition Section (AEO/GEO 정의 블록)
   ─────────────────────────────────────── */
.definition-section {
  padding: 80px 0 60px;
  background: #fdfbf7;
  border-bottom: 1px solid rgba(74,124,89,.08);
}
.definition-section .section-eyebrow {
  margin-bottom: 12px;
}
.definition-section .section-title {
  margin-bottom: 28px;
}
.def-lead {
  max-width: 820px;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.75;
  color: #333;
  text-align: center;
  letter-spacing: -.2px;
}
.def-lead strong {
  font-weight: 800;
  color: #1a1a1a;
  background: linear-gradient(transparent 60%, rgba(74,124,89,.12) 60%);
  padding: 0 2px;
}
.def-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.def-item {
  background: #fff;
  border: 1px solid rgba(74,124,89,.12);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(74,124,89,.05);
}
.def-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #2e7d4e;
  background: #f0f9ec;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: .3px;
}
.def-item p {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin: 0;
}
@media (max-width: 720px) {
  .definition-section { padding: 60px 0 40px; }
  .def-lead { font-size: 15px; padding: 0 16px; }
  .def-grid { grid-template-columns: 1fr; padding: 0 16px; }
}

/* FAQ 더보기 */
.faq-more {
  text-align: center;
  margin-top: 32px;
}
.faq-more-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #2e7d4e;
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid #4A7C59;
  border-radius: 999px;
  background: #fff;
  transition: all .15s;
}
.faq-more-link:hover {
  background: #f0f9ec;
  transform: translateY(-1px);
}

/* Showcase 메타 라인 (업종/결과/소요시간) */
.showcase-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  font-size: 11px;
  color: #666;
}
.showcase-meta-row span {
  background: #f4f0e8;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
}

/* Footer 페이지 링크 */
.footer-links {
  margin: 18px 0 24px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
  color: rgba(254,243,232,.5);
}
.footer-links a {
  color: rgba(254,243,232,.9);
  text-decoration: none;
  font-weight: 600;
  transition: color .15s;
}
.footer-links a:hover {
  color: var(--yellow, #fbbf24);
  text-decoration: underline;
}
.footer-links span {
  font-size: 10px;
  opacity: .5;
}

/* ───────────────────────────────────────
   C. 산출물 박스 (정의 섹션 내부)
   ─────────────────────────────────────── */
.def-deliverables {
  max-width: 760px;
  margin: 30px auto 0;
  background: linear-gradient(135deg, #f0f9ec 0%, #e6f2eb 100%);
  border: 2px solid #c8e2d2;
  border-radius: 18px;
  padding: 24px 28px;
}
.def-deliverables-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: #2e7d4e;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: .3px;
}
.def-deliverables-list {
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.85;
  color: #1a1a1a;
}
.def-deliverables-list li strong {
  font-weight: 800;
  color: #2e7d4e;
}

/* ───────────────────────────────────────
   A. 추천 대상 섹션 (audience-section)
   ─────────────────────────────────────── */
.audience-section {
  padding: 80px 0 70px;
  background: #faf8f3;
  border-top: 1px solid rgba(74,124,89,.06);
  border-bottom: 1px solid rgba(74,124,89,.06);
}
.audience-intro {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-align: center;
}
.audience-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.audience-card {
  background: #fff;
  border: 1px solid rgba(74,124,89,.12);
  border-radius: 16px;
  padding: 22px 22px 24px;
  transition: transform .15s, box-shadow .15s;
}
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74,124,89,.08);
}
.audience-emoji {
  font-size: 32px;
  margin-bottom: 10px;
}
.audience-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1a1a;
  letter-spacing: -.3px;
}
.audience-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}
.audience-note {
  max-width: 760px;
  margin: 34px auto 0;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  text-align: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px dashed #c8e2d2;
  border-radius: 12px;
}
.audience-note strong {
  color: #2e7d4e;
  font-weight: 800;
}
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
}
@media (max-width: 560px) {
  .audience-section { padding: 60px 0 50px; }
  .audience-grid { grid-template-columns: 1fr; gap: 12px; }
  .audience-intro { font-size: 14px; padding: 0 16px; }
}

/* ───────────────────────────────────────
   B. Showcase 카드 운영 상태 1줄
   ─────────────────────────────────────── */
.showcase-status {
  font-size: 12px;
  line-height: 1.55;
  color: #2e7d4e;
  font-weight: 700;
  margin-top: 8px;
  padding: 6px 10px;
  background: #f0f9ec;
  border-left: 3px solid #4A7C59;
  border-radius: 4px;
}
