html,
body {
  color: var(--text-dark);
  background-color: #ffffff;
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ==========================================================================
   1. 히어로 섹션 (Hero Section)
   ========================================================================== */
.hero-section {
  color: #ffffff;
  padding: 180px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000000;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary-orange);
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -1.2px;
  color: #141414;
}

.hero-content p {
  font-size: 22px;
  line-height: 1.6;
  color: #616161;
  margin-bottom: 20px;
}

/* ==========================================================================
   1-1. 후기 롤링 섹션 (Review Ticker)
   ========================================================================== */
.review-ticker-section {
  background: #f9f9f9;
  padding: 80px 0 60px;
  overflow: hidden;
}

.review-ticker-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #141414;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.review-ticker-subtitle {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  color: #999999;
  margin-bottom: 24px;
}

.ticker-highlight {
  color: #ff6b35;
  font-weight: 700;
}

.review-ticker-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 6px 0;
}

.review-ticker-wrap::before,
.review-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.review-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f9f9f9, transparent);
}

.review-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f9f9f9, transparent);
}

.review-ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: tickerScroll 150s linear infinite;
}

.review-ticker-track:hover {
  animation-play-state: paused;
}

.review-ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  width: 360px;
  border: 1px solid #eeeeee;
  text-decoration: none;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.review-ticker-item:hover {
  transform: translateY(-2px);
}

.ticker-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding-top: 2px;
}

.ticker-name {
  font-size: 14px;
  font-weight: 700;
  color: #141414;
  white-space: nowrap;
}

.ticker-role {
  font-size: 11px;
  font-weight: 600;
  color: #ff6b35;
  background: #fff3ee;
  padding: 2px 8px;
  border-radius: 8px;
  white-space: nowrap;
}

.ticker-text {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   2. 커리어 성장 지표 섹션 (Career Growth)
   ========================================================================== */
.career-growth-section {
  background-color: #413932;
  color: #ffffff;
  padding: 60px 0 80px;
  text-align: center;
}

.growth-header {
  margin-bottom: 30px;
}

.sub-title {
  display: block;
  font-size: 24px;
  color: #aebdb5;
  margin-bottom: 12px;
  font-weight: 500;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

.stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-label {
  font-size: 22px;
  color: #e2e8e5;
}

.stat-number {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.stat-unit {
  font-size: 48px;
  font-weight: 400;
  color: #aebdb5;
  margin-left: 4px;
}

/* ==========================================================================
   2-1. 가치 제안 섹션 (Value Proposition)
   ========================================================================== */
.value-section {
  padding: 100px 0;
  background-color: #fafafa;
}

.value-subtitle {
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 48px;
  word-break: keep-all;
}

.value-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.value-card {
  max-width: 480px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.value-card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.value-card-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.65;
  word-break: keep-all;
}

/* ==========================================================================
   3. 문제 제기 및 솔루션 섹션 (Problem Solution)
   ========================================================================== */
.problem-solution-section {
  padding: 100px 0 20px;
  background-color: #ffffff;
}

.problem-solution-section .container {
  text-align: left;
}

.speech-bubble {
  display: inline-block;
  background-color: #ff6b35;
  color: #ffffff;
  padding: 10px 16px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 24px;
  position: relative;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 20px;
  border-width: 12px 12px 0 0;
  border-style: solid;
  border-color: #ff6b35 transparent transparent transparent;
}

.solution-text p {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.solution-text .text-dark {
  color: #333333;
}
.solution-text .text-light {
  color: #bebebe;
  font-weight: 700;
}

/* 진단 플로우 섹션 */
.diag-section {
  padding: 120px 0 100px;
}

.diag-section .container {
  text-align: center;
}

.diag-empathy-title {
  font-size: 40px;
  font-weight: 800;
  color: #141414;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.diag-bubbles {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto 90px;
}

.diag-bubble {
  background-color: #f5f5f7;
  color: #333;
  padding: 20px 28px;
  border-radius: 16px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  max-width: 520px;
}

.diag-bubble:nth-child(1) { align-self: flex-start; border-bottom-left-radius: 4px; }
.diag-bubble:nth-child(2) { align-self: flex-end; border-bottom-right-radius: 4px; }
.diag-bubble:nth-child(3) { align-self: flex-start; border-bottom-left-radius: 4px; }

.diag-transition {
  margin-bottom: 32px;
}

.diag-transition-text {
  font-size: 36px;
  font-weight: 800;
  color: #141414;
  line-height: 1.4;
  letter-spacing: -0.8px;
}

.diag-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 72px;
}

.diag-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
  padding: 20px 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.diag-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.12);
}

.diag-card-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-orange);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.diag-card-title {
  font-size: 24px;
  font-weight: 800;
  color: #141414;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.diag-card-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.diag-cta {
  text-align: center;
}

.diag-cta-text {
  font-size: 26px;
  font-weight: 600;
  color: #141414;
  line-height: 1.5;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.diag-cta-text strong {
  font-weight: 800;
  color: var(--primary-orange);
}

/* ==========================================================================
   3-1. 성과 강조 섹션 (Highlight Section)
   ========================================================================== */
.highlight-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.highlight-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.highlight-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.highlight-desc {
  font-size: 17px;
  color: #aaaaaa;
  line-height: 1.7;
  word-break: keep-all;
  margin-bottom: 32px;
}

.highlight-examples {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.highlight-tag {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  color: #ff6b35;
  white-space: nowrap;
}

.highlight-bottom {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
}

/* ==========================================================================
   4. 기능 소개 섹션 (Features Section)
   ========================================================================== */
.features-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  width: 100%;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.features-cta {
  text-align: center;
  margin-top: 60px;
}

/* Before / After 섹션 */
.ba-section {
  padding: 90px 0;
  background-color: #fafafa;
}

.ba-section .container {
  text-align: center;
}

.ba-title {
  font-size: 36px;
  font-weight: 800;
  color: #141414;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.ba-subtitle {
  font-size: 17px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 44px;
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: stretch;
  gap: 0;
}

.ba-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 20px 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  transition: all 0.3s ease;
}

.ba-before {
  background-color: #f1f1f3;
  border: 1px solid #e5e5e8;
}

.ba-after {
  background-color: #ffffff;
  border: 1.5px solid var(--primary-orange);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.1);
}

.ba-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.ba-label-before {
  color: #999;
}

.ba-label-after {
  color: var(--primary-orange);
}

.ba-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #141414;
  margin: 0;
  letter-spacing: -0.3px;
}

.ba-before .ba-text {
  color: #555;
  font-weight: 500;
}

.ba-after .ba-text strong {
  font-weight: 800;
  color: #141414;
}

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-orange);
}

.ba-cta {
  text-align: center;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1.1;
}

.feature-text h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.feature-text p {
  font-size: 20px;
  line-height: 1.5;
  color: #555555;
}

.feature-text .example-text {
  display: inline-block;
  margin-top: 8px;
  color: #888888;
  font-size: 18px;
}

.feature-image {
  flex: 1;
  width: 100%;
  max-width: 550px;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.box-blue {
  background-color: #eaf7f8;
}
.box-pink {
  background-color: #fdf0f6;
}
.box-green {
  background-color: #eaf8d1;
}

/* ==========================================================================
   5. 신청 프로세스 섹션 (Process Section)
   ========================================================================== */
.process-section {
  background-color: #2d3236;
  padding: 100px 0;
  color: #ffffff;
}

.process-section .section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.process-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.process-step {
  flex: 1;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background-color: #383e42;
  border-radius: 16px;
  overflow: hidden;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: #ff6b35;
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #a0a8ac;
}

.process-notice {
  margin-top: 50px;
  padding: 24px 30px;
  background-color: rgba(255, 107, 53, 0.08);
  border: 1px solid #ff6b35;
  border-radius: 12px;
  text-align: center;
}

.notice-text {
  font-size: 20px;
  color: #ff6b35;
  margin: 0;
  word-break: keep-all;
  line-height: 1.5;
}

/* ==========================================================================
   6. FAQ 섹션 (FAQ Section)
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.faq-section .section-title-center {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.5;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background-color: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  width: 100%;
}

.faq-question {
  padding: 24px 30px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 30px 30px 30px;
  font-size: 20px;
  line-height: 1.6;
  color: #666666;
  word-break: keep-all;
}

.arrow-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.faq-item[open] .arrow-icon {
  transform: rotate(180deg);
}
.faq-item[open] {
  background-color: #f2f4f6;
}

/* ==========================================================================
   7. 파이널 CTA 섹션 (Final CTA Section)
   ========================================================================== */
.final-cta-section {
  background-color: #feeb9c;
  padding: 10px 0;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-content {
  flex: 1;
  text-align: left;
}

.cta-sub-text {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #555555;
}

.cta-main-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -1px;
  color: #1a1a1a;
  line-height: 1.3;
  white-space: nowrap;
}

.cta-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cta-image img {
  width: 364px;
  height: 300px;
  object-fit: contain;
}

/* ==========================================================================
   8. 반응형 미디어 쿼리 - 태블릿 (768px ~ 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  /* 히어로 섹션 */
  .hero-section {
    padding: 120px 0 100px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    font-size: 19px;
  }

  /* 커리어 성장 지표 섹션 */
  .career-growth-section {
    padding: 50px 0 60px;
  }

  .career-growth-section .main-title {
    font-size: 32px;
  }

  .sub-title {
    font-size: 20px;
  }

  .stats-wrapper {
    gap: 60px;
  }

  .stat-label {
    font-size: 18px;
  }

  .stat-number {
    font-size: 56px !important;
  }

  .stat-unit {
    font-size: 36px;
  }

  /* 가치 제안 섹션 */
  .value-section {
    padding: 80px 0;
  }
  .value-subtitle {
    font-size: 16px;
  }
  .value-card {
    padding: 28px 24px;
  }
  .value-card-title {
    font-size: 17px;
  }

  /* 문제 제기 섹션 */
  .problem-solution-section {
    padding: 80px 0 20px;
  }

  /* 진단 플로우 - 태블릿 */
  .diag-section {
    padding: 100px 0 80px;
  }
  .diag-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .diag-transition-text {
    font-size: 32px;
  }

  .speech-bubble {
    font-size: 20px;
  }

  .solution-text p {
    font-size: 26px !important;
  }

  /* 성과 강조 섹션 */
  .highlight-section {
    padding: 70px 0;
  }
  .highlight-title {
    font-size: 30px;
  }
  .highlight-desc {
    font-size: 16px;
  }
  .highlight-tag {
    font-size: 14px;
    padding: 8px 16px;
  }
  .highlight-bottom {
    font-size: 18px;
  }

  /* 기능 소개 섹션 */
  .features-section {
    padding: 80px 0;
  }

  /* Before/After 섹션 - 태블릿 */
  .ba-section {
    padding: 72px 0;
  }
  .ba-title {
    font-size: 30px;
  }
  .ba-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .ba-list {
    gap: 10px;
    margin-bottom: 32px;
  }
  .ba-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .ba-card {
    padding: 18px 20px;
    min-height: 0;
  }
  .ba-arrow {
    transform: rotate(90deg);
    font-size: 18px;
    padding: 0;
  }
  .ba-text {
    font-size: 15px;
  }

  .feature-row {
    gap: 30px;
  }

  .feature-text {
    flex: 1.2;
  }

  .feature-text h3 {
    font-size: 30px;
  }

  .feature-text p {
    font-size: 18px;
  }

  .feature-image {
    flex: 1;
    height: auto;
    width: 50%;
    max-width: none;
    aspect-ratio: 550 / 360;
    object-fit: cover;
  }

  /* 신청 프로세스 섹션 */
  .process-section {
    padding: 80px 0;
  }

  .process-section .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .process-step {
    text-align: center;
  }

  .step-icon {
    margin: 0 auto 24px;
    justify-content: center;
  }

  .step-title {
    justify-content: center;
    font-size: 22px;
  }

  .step-desc {
    font-size: 15px;
  }

  .notice-text {
    font-size: 18px;
  }

  /* FAQ 섹션 */
  .faq-section {
    padding: 80px 0;
  }

  .faq-section .section-title-center {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-question {
    font-size: 20px;
    padding: 20px 24px;
  }

  .faq-answer {
    font-size: 18px;
    padding: 0 24px 24px;
  }

  /* 파이널 CTA 섹션 */
  .final-cta-section {
    padding: 60px 0;
  }

  .cta-wrapper {
    gap: 40px;
  }

  .cta-main-title {
    font-size: 32px;
    white-space: normal;
    word-break: keep-all;
  }

  .cta-sub-text {
    font-size: 20px;
  }

  .cta-image img {
    width: 280px;
    height: 240px;
  }
}

/* ==========================================================================
   8-1. 반응형 미디어 쿼리 - 중간 태블릿 (769px ~ 900px)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 900px) {
  /* 히어로 섹션 */
  .hero-section {
    padding: 100px 0 80px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 18px;
  }

  /* 가치 제안 섹션 */
  .value-section {
    padding: 70px 0;
  }
  .value-subtitle {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .value-cards {
    gap: 14px;
  }
  .value-card {
    padding: 24px 20px;
  }
  .value-card-icon {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .value-card-title {
    font-size: 16px;
  }
  .value-card-desc {
    font-size: 13px;
  }

  /* 문제 제기 섹션 */
  .speech-bubble {
    font-size: 18px;
  }

  .solution-text p {
    font-size: 24px !important;
  }

  /* 성과 강조 섹션 */
  .highlight-section {
    padding: 60px 0;
  }
  .highlight-title {
    font-size: 26px;
  }
  .highlight-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .highlight-examples {
    gap: 8px;
    margin-bottom: 24px;
  }
  .highlight-tag {
    font-size: 13px;
    padding: 8px 14px;
  }
  .highlight-bottom {
    font-size: 17px;
  }

  /* 기능 소개 섹션 - 세로 배치로 전환 */
  .features-section .feature-row,
  .features-section .feature-row.reverse {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .features-section .feature-image {
    width: 100%;
    height: 280px;
    max-width: 100%;
    aspect-ratio: unset;
    order: -1;
  }

  .features-section .feature-text {
    width: 100%;
  }

  .feature-text h3 {
    font-size: 28px;
  }

  .feature-text p {
    font-size: 17px;
  }

  /* 신청 프로세스 섹션 */
  .process-section .section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 28px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .step-title {
    font-size: 20px;
    justify-content: center;
  }

  .step-desc {
    font-size: 14px;
    text-align: center;
  }

  .notice-text {
    font-size: 16px;
  }

  /* FAQ 섹션 */
  .faq-section .section-title-center {
    font-size: 32px;
  }

  .faq-question {
    font-size: 18px;
    padding: 20px 24px;
  }

  .faq-answer {
    font-size: 16px;
    padding: 0 24px 24px;
  }

  /* CTA 섹션 */
  .cta-wrapper {
    gap: 24px;
  }

  .cta-main-title {
    font-size: 28px;
    white-space: normal;
    word-break: keep-all;
  }

  .cta-sub-text {
    font-size: 18px;
  }

  .cta-image img {
    width: 240px;
    height: 200px;
  }
}

/* ==========================================================================
   9. 반응형 미디어 쿼리 - 모바일 (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* 히어로 섹션 */
  .hero-section {
    padding: 70px 0 310px;
    background-image: url("../images/hero-bg-mo.jpg");
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 20px;
    line-height: 1.4;
  }

  .hero-badge {
    font-size: 17px !important;
    padding: 6px 16px;
  }

  /* 후기 롤링 섹션 */
  .review-ticker-section {
    padding: 70px 16px 40px;
  }

  .review-ticker-title {
    text-align: left;
    font-size: 28px;
    line-height: 1.4;
  }

  .review-ticker-subtitle {
    text-align: left;
    font-size: 18px;
  }

  /* 커리어 성장 지표 섹션 */
  .career-growth-section {
    padding: 50px 0;
  }

  .career-growth-section .main-title {
    font-size: 32px;
  }

  .sub-title {
    font-size: 18px;
  }

  .stat-label {
    font-size: 20px;
  }

  .stats-wrapper {
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .stat-number {
    font-size: 48px !important;
  }

  /* 문제 제기 섹션 */
  .problem-solution-section {
    padding: 80px 0 10px;
  }

  /* 진단 플로우 - 모바일 */
  .diag-section {
    padding: 80px 0 70px;
  }
  .diag-empathy-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .diag-bubbles {
    gap: 16px;
    margin-bottom: 64px;
    max-width: 100%;
  }
  .diag-bubble {
    font-size: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    max-width: 88%;
    text-align: left;
    line-height: 1.5;
    word-break: keep-all;
  }
  .diag-transition {
    margin-bottom: 24px;
  }
  .diag-transition-text {
    font-size: 24px;
    letter-spacing: -0.5px;
  }
  .diag-cards {
    gap: 12px;
    margin-bottom: 48px;
  }
  .diag-card {
    padding: 20px 20px;
    border-radius: 16px;
  }
  .diag-card-number {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .diag-card-title {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .diag-card-desc {
    font-size: 17px;
  }
  .diag-cta-text {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .speech-bubble {
    font-size: 17px !important;
    margin-bottom: 24px;
    padding: 10px 12px;
  }

  .solution-text p {
    font-size: 25px !important;
    line-height: 1.5;
  }

  /* 성과 강조 섹션 */
  .highlight-section {
    padding: 56px 0;
  }
  .highlight-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .highlight-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .highlight-examples {
    gap: 8px;
    margin-bottom: 24px;
  }
  .highlight-tag {
    font-size: 13px;
    padding: 8px 14px;
  }
  .highlight-bottom {
    font-size: 16px;
  }

  /* Before/After 섹션 - 모바일 (결합 카드 레이아웃) */
  .ba-section {
    padding: 64px 0;
  }
  .ba-title {
    font-size: 26px;
    margin-bottom: 28px;
  }
  .ba-list {
    gap: 14px;
    margin-bottom: 0;
  }
  .ba-row {
    grid-template-columns: 1fr;
    gap: 0;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1.5px solid var(--primary-orange);
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.1);
    overflow: hidden;
  }
  .ba-card {
    padding: 16px 18px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-height: 0;
    background-color: transparent;
  }
  .ba-before {
    background-color: #f5f5f7;
    border-bottom: 1px dashed #d5d5d8;
  }
  .ba-after {
    background-color: #ffffff;
  }
  .ba-label {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .ba-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    word-break: keep-all;
  }
  .ba-before .ba-text {
    font-weight: 500;
  }
  .ba-arrow {
    display: none;
  }
  .ba-row br.mo-br {
    display: none;
  }

  /* 기능 소개 섹션 */
  .features-section .feature-row,
  .features-section .feature-row.reverse {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    margin-bottom: 60px;
    width: 100%;
  }

  .features-section .feature-text {
    width: 100%;
  }

  .features-section .feature-image {
    width: 100%;
    height: 260px;
    min-height: 260px;
    max-width: 100%;
    aspect-ratio: unset;
    order: -1;
  }

  .features-section .feature-text h3 {
    font-size: 27px;
    margin-bottom: 10px;
  }

  .features-section .feature-text p {
    font-size: 18px;
  }

  /* 신청 프로세스 섹션 */
  .process-section {
    padding: 60px 0;
  }

  .process-section .section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 24px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 12px;
    align-items: start;
  }

  .process-step {
    text-align: center;
  }

  .step-icon {
    width: 100%;
    max-width: 260px;
    height: auto;
    aspect-ratio: unset;
    margin-bottom: 18px;
    overflow: visible;
  }

  .step-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .step-title {
    font-size: 20px;
    margin-bottom: 10px;
    justify-content: center;
    text-align: center;
  }

  .step-desc {
    font-size: 16px;
    line-height: 1.4;
  }

  .notice-text {
    font-size: 18px;
    line-height: 1.5;
  }

  /* FAQ 섹션 */
  .faq-container {
    padding: 0;
  }

  .faq-section .section-title-center {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .faq-question {
    padding: 20px;
    font-size: 18px;
  }

  .faq-answer {
    padding: 0 16px 30px 16px;
    font-size: 16px;
  }

  .arrow-icon {
    width: 18px;
    height: 18px;
  }

  /* 파이널 CTA 섹션 */
  .final-cta-section {
    padding: 60px 0 0;
  }

  .cta-wrapper {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }

  .cta-content {
    width: 100%;
    order: 1;
  }

  .cta-sub-text {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .cta-main-title {
    font-size: 34px;
    margin-bottom: 28px;
    white-space: normal;
    word-break: keep-all;
  }

  .cta-image {
    width: 80%;
    justify-content: center;
    order: 2;
  }

  .cta-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}
