/* ── index.html 전용 스타일 ── */

/* section-label: 그린 */
.section-label {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}

/* NAV */
.nav-logo-text span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-recruit { color: rgba(255,255,255,0.55) !important; font-size: 13px; font-weight: 700; text-decoration: none; }
.nav-recruit:hover { color: rgba(255,255,255,0.9) !important; }

/* HERO */
#hero { background: linear-gradient(135deg, #0a1628 0%, #0f2d1f 55%, #0a1628 100%); }
#hero::before { background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%); }
.hero-layout {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-badge {
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.4); color: var(--green);
}
.hero-title .highlight { color: var(--green); }
.hero-stat-num { font-size: 28px; font-weight: 900; color: var(--green); }

/* 모바일 이미지 배너 */
.hero-mobile-img {
  display: none; width: 100%; height: 200px;
  border-radius: 16px; overflow: hidden; margin-top: 28px; position: relative;
}
.hero-mobile-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-mobile-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.6) 0%, transparent 60%);
  display: flex; align-items: center; padding: 20px;
}
.hero-mobile-badge {
  background: rgba(34,197,94,0.9); color: #fff;
  font-size: 13px; font-weight: 900; padding: 6px 14px; border-radius: 100px;
}

/* 스마트폰 목업 */
.phone-mockup { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-screen { width: 100%; height: 100%; background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.post-image { width: 100%; height: 120px; position: relative; overflow: hidden; }
.post-image img { width: 100%; height: 100%; object-fit: cover; }
.post-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.5)); padding: 8px;
}
.post-overlay-text { font-size: 8px; color: #fff; font-weight: 700; }
.post-header { display: flex; align-items: center; gap: 6px; padding: 6px 10px; }
.post-avatar { width: 24px; height: 24px; background: linear-gradient(135deg, #22c55e, #16a34a); border-radius: 50%; }
.post-name { font-size: 9px; font-weight: 700; color: #333; }
.insta-stories { display: flex; gap: 8px; padding: 10px; overflow: hidden; background: #fff; }
.story-item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex-shrink: 0; }
.story-ring {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); padding: 2px;
}
.story-avatar { width: 100%; height: 100%; border-radius: 50%; background: #ddd; border: 2px solid #fff; }
.story-label { font-size: 7px; color: #333; }
.phone-badge {
  position: absolute; background: #fff; border-radius: 14px; padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 8px;
}
.phone-badge-left { left: -20px; top: 80px; }
.phone-badge-right { right: -20px; bottom: 100px; }
.badge-icon { font-size: 20px; }
.badge-num { font-size: 14px; font-weight: 900; color: var(--green); }
.badge-label { font-size: 9px; color: var(--gray); }

/* PROBLEM */
#problem { background: #fff; }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.problem-card {
  background: #f8fafc; border-radius: 14px; padding: 18px 16px;
  border-left: 4px solid #e2e8f0; transition: border-color 0.2s, transform 0.2s;
}
.problem-card:hover { border-color: var(--green); transform: translateY(-2px); }
.problem-emoji { font-size: 22px; margin-bottom: 8px; }
.problem-text { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.5; }
.problem-answer {
  margin-top: 24px; background: linear-gradient(135deg, #0f172a, #1e3a2f);
  border-radius: 16px; padding: 24px 20px; text-align: center; color: #fff;
}
.problem-answer p { font-size: clamp(16px, 3vw, 20px); font-weight: 700; line-height: 1.7; }
.problem-answer span { color: var(--green); }

/* SERVICES */
#services { background: var(--green-light); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 28px; }
.service-row {
  background: #fff; border-radius: 20px; padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
}
.service-row:nth-child(even) { direction: rtl; }
.service-row:nth-child(even) > * { direction: ltr; }
.service-platform {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green-dark);
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 100px; margin-bottom: 12px;
}
.service-title { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.service-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag { background: var(--green-light); color: var(--green-dark); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 100px; }
.sns-mockup { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.mock-insta { background: #fff; border: 1px solid #efefef; }
.mock-insta-header { padding: 10px 12px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #efefef; }
.mock-insta-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); }
.mock-insta-name { font-size: 12px; font-weight: 700; }
.mock-insta-img { height: 160px; overflow: hidden; }
.mock-insta-img img { width: 100%; height: 100%; object-fit: cover; }
.mock-insta-footer { padding: 10px 12px; }
.mock-insta-actions { display: flex; gap: 10px; margin-bottom: 6px; font-size: 18px; }
.mock-insta-likes { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.mock-insta-caption { font-size: 11px; color: #333; line-height: 1.5; }
.mock-insta-caption strong { font-weight: 700; }
.mock-insta-views { background: rgba(0,0,0,0.6); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 6px; display: inline-block; margin-top: 4px; }
.mock-blog { background: #fff; border: 1px solid #e5e7eb; }
.mock-blog-header { background: #03c75a; padding: 10px 12px; display: flex; align-items: center; gap: 6px; }
.mock-blog-logo { color: #fff; font-size: 14px; font-weight: 900; }
.mock-blog-search { flex: 1; background: #fff; border-radius: 4px; padding: 4px 8px; font-size: 10px; color: #999; }
.mock-blog-rank { background: linear-gradient(135deg, #fff7ed, #fef3c7); border: 1px solid #fcd34d; border-radius: 8px; padding: 10px 12px; margin: 12px; display: flex; align-items: center; gap: 8px; }
.mock-blog-rank-num { font-size: 28px; font-weight: 900; color: #f59e0b; line-height: 1; }
.mock-blog-rank-label { font-size: 11px; color: #92400e; font-weight: 700; }
.mock-blog-post { padding: 0 12px 12px; }
.mock-blog-img { height: 90px; border-radius: 8px; overflow: hidden; margin-bottom: 8px; }
.mock-blog-img img { width: 100%; height: 100%; object-fit: cover; }
.mock-blog-title { font-size: 12px; font-weight: 700; margin-bottom: 4px; line-height: 1.4; }
.mock-blog-meta { font-size: 10px; color: #999; }
.mock-place { background: #fff; border: 1px solid #e5e7eb; }
.mock-place-header { background: #03c75a; padding: 10px 12px; display: flex; align-items: center; gap: 6px; }
.mock-place-logo { color: #fff; font-size: 13px; font-weight: 900; }
.mock-place-map { height: 100px; position: relative; overflow: hidden; }
.mock-place-map img { width: 100%; height: 100%; object-fit: cover; }
.mock-place-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 28px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.mock-place-info { padding: 10px 12px; }
.mock-place-name { font-size: 13px; font-weight: 900; margin-bottom: 4px; }
.mock-place-stars { color: #f59e0b; font-size: 12px; margin-bottom: 6px; }
.mock-place-stars span { font-size: 11px; color: #666; }
.mock-place-badge { display: inline-flex; align-items: center; gap: 4px; background: #fff7ed; color: #c2410c; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px; border: 1px solid #fed7aa; }

/* RESULTS */
#results { background: var(--dark); color: #fff; }
#results .section-title { color: #fff; }
#results .section-sub { color: rgba(255,255,255,0.6); }
.results-highlight { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 12px; padding: 14px 18px; margin: 20px 0; text-align: center; }
.results-highlight p { font-size: 15px; font-weight: 700; color: var(--green); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.receipt-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.receipt-header { background: var(--green); padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; }
.receipt-type { font-size: 11px; font-weight: 700; color: #fff; }
.receipt-rate { font-size: 18px; font-weight: 900; color: #fff; }
.receipt-body { padding: 14px; }
.receipt-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px dashed #e5e7eb; }
.receipt-row:last-child { border-bottom: none; }
.receipt-label { font-size: 11px; color: var(--gray); }
.receipt-value { font-size: 12px; font-weight: 700; color: var(--text); }
.receipt-total { background: #f0fdf4; border-radius: 8px; padding: 10px 12px; margin-top: 10px; text-align: center; }
.receipt-total-label { font-size: 10px; color: var(--gray); margin-bottom: 2px; }
.receipt-total-num { font-size: 20px; font-weight: 900; color: var(--green); }
.results-note { text-align: center; margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.3); }

/* REVIEWS */
.review-card { background: #fffbeb; border-radius: 16px; padding: 18px; border: 1px solid #fef3c7; display: flex; gap: 14px; }
.review-avatar-wrap { flex-shrink: 0; }
.review-avatar-circle { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-dark)); display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; }
.review-content { flex: 1; }
.review-stars { color: #f59e0b; font-size: 12px; margin-bottom: 6px; }
.review-bubble-tail { background: #FEE500; border-radius: 10px 10px 10px 2px; padding: 10px 12px; margin-bottom: 8px; }
.review-badge { display: inline-block; background: var(--green-light); color: var(--green-dark); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 6px; }

/* PROCESS */
#process { background: var(--green-light); }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.process-card { background: #fff; border-radius: 16px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.process-num { width: 40px; height: 40px; background: var(--green); color: #fff; font-size: 18px; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; box-shadow: 0 4px 12px rgba(34,197,94,0.35); }
.process-icon { font-size: 24px; margin-bottom: 8px; }
.process-title { font-size: 15px; font-weight: 900; margin-bottom: 6px; }
.process-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* CTA */
#cta { background: linear-gradient(135deg, #14532d, #166534, #15803d); }
#cta .section-sub { color: rgba(255,255,255,0.8); }

/* FOOTER */
.footer-logo-text span { color: var(--green); }
.footer-link { color: var(--green); }

/* FLOATING */
.floating-btn { background: var(--kakao); color: #191919; }

/* 반응형 */
@media (max-width: 768px) {
  .hero-layout { grid-template-columns: 1fr; }
  .phone-mockup { display: none; }
  .hero-mobile-img { display: block; }
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) { direction: ltr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
