/* =========================================
   index.html 페이지 전용 스타일
   메인 페이지 모든 섹션의 디자인 정의
   ========================================= */

/* === 메인 콘텐츠 스타일 === */
:root {
  --accent: #FF4D00;
  --accent-bg: #FFF0EB;
  --black: #111111;
  --warm: #FAFAF8;
  --white: #FFFFFF;
  --gray-300: #E5E5E5;
  --gray-400: #CCCCCC;
  --gray-500: #AAAAAA;
  --gray-600: #888888;
  --gray-700: #666666;
  --text-sub: #CCCCCC;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }


/* ── pen4: 3컬럼 통합 섹션 ── */
.tri-section {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--black);
  min-height: 900px;
}
.tri-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 48px;
}
.tri-col--dark {
  background: var(--black);
}
.tri-col--mid {
  background: #222;
}
.tri-col--dark + .tri-col,
.tri-col--mid + .tri-col {
  border-left: 1px solid #333;
}

/* Col 1 */
.tri-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
}
.tri-warn-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.tri-warn-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.tri-warn-no {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.tri-accent-line {
  height: 2px;
  width: 100%;
  background: var(--accent);
  opacity: 0.3;
}
.tri-desc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}
.tri-desc-sub {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
}
.tri-highlight {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

/* Col 2 */
.tri-q-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 2px;
}
.tri-q-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tri-q-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.tri-q-text--accent {
  color: var(--accent);
}
.tri-divider {
  height: 1px;
  width: 100%;
  background: #444;
}
.tri-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tri-pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tri-pill {
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid #666;
  font-size: 11px;
  font-weight: 500;
  color: #ccc;
  background: transparent;
  transition: transform 0.25s ease;
}
.tri-pill:hover {
  transform: translateY(-2px);
}
.tri-pill--active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,77,0,0.08);
  font-weight: 600;
}

/* tri-pills: 모바일에서 row 구조 해제하여 자연스럽게 배치 */
@media (max-width: 768px) {
  .tri-pills {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .tri-pills-row {
    display: contents;
  }
  .tri-pill {
    font-size: 11px;
    padding: 5px 11px;
  }
}
@media (max-width: 380px) {
  .tri-pill {
    font-size: 10px;
    padding: 4px 9px;
  }
}

/* Col 3 */
.tri-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 9999px;
  align-self: flex-start;
}
.tri-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tri-col-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}
.tri-col-sub {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
}
.tri-fraud-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
}
.tri-fraud-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
}
.tri-fraud-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
}
.tri-tag-label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  letter-spacing: 1px;
}
.tri-tag-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tri-tag-pills-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tri-tag {
  padding: 5px 12px;
  border-radius: 9999px;
  border: 1px solid #444;
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  background: transparent;
}
.tri-tag--active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,77,0,0.08);
  font-weight: 600;
}
.tri-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  align-self: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tri-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,77,0,0.3);
}
.tri-cta-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* pen4 column animations */
.tri-col {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tri-col.visible {
  opacity: 1;
  transform: translateY(0);
}

/* pen4 responsive */
@media (max-width: 1024px) {
  .tri-section {
    min-height: auto;
  }
  .tri-col {
    padding: 48px 32px;
  }
}
@media (max-width: 768px) {
  .tri-section {
    flex-direction: column;
  }
  .tri-col + .tri-col {
    border-left: none;
    border-top: 1px solid #333;
  }
  .tri-col {
    padding: 48px 24px;
  }
  .tri-q-text {
    font-size: 24px;
  }
  .tri-col-title {
    font-size: 26px;
  }
}


/* ── Section 1: Hero ── */
.hero {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 120px;
  background: var(--black);
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hero-accent-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #ccc;
  letter-spacing: 1px;
}
.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title {
  font-size: 50px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.hero-title-line2 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title-line2 .hero-title span {
  color: var(--accent);
}
.hero-title-line2::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.hero-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-tag {
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}
.hero-career {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-message {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  color: #AAAAAA;
  line-height: 2;
  word-break: keep-all;
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
}
.hero-message strong {
  color: var(--white);
  font-weight: 700;
}
.hero-career span {
  font-size: 13px;
  color: #aaa;
}
.hero-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
}
.hero-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.7;
}
.hero-info-list li::before {
  content: '▸';
  color: var(--accent);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.hero-info-list li strong {
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  min-width: 110px;
}
.hero-info-list li span {
  color: #aaa;
  word-break: keep-all;
}
.hero-promise {
  background: #161616;
  border-left: 3px solid var(--accent);
  padding: 24px 24px 24px 28px;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-promise-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-promise .hero-message {
  border-top: none;
  padding-top: 0;
  margin: 0;
  line-height: 1.9;
}
.hero-cta-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 18px 20px;
  background: linear-gradient(90deg, rgba(255,77,0,0.12), rgba(255,77,0,0));
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  line-height: 1.6;
}
.hero-cta-text strong {
  color: var(--accent);
  font-weight: 800;
}
@media (max-width: 768px) {
  .hero-info-list li {
    flex-direction: column;
    gap: 4px;
  }
  .hero-info-list li strong {
    min-width: auto;
  }
  .hero-promise {
    padding: 20px;
  }
}
.hero-photo {
  width: 420px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  align-self: stretch;
}
.hero-photo img {
  width: 80%;
  height: 100%;
  object-fit: cover;
}

/* ── Section 2: 피해금 회수 절차 ── */
.process {
  background: var(--warm);
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px var(--content-pad-x);
  display: flex;
  gap: 60px;
}
.process-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}
.process-left .section-sub {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}
.process-left .section-title {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  letter-spacing: -0.02em;
  word-break: keep-all;
  text-align: center;
}
.process-title__highlight {
  color: var(--accent);
}
.process-left .section-desc {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.8;
}
.process-img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: #e5e5e5;
}
.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.step-row {
  display: flex;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-300);
}
.step-row:last-child {
  border-bottom: none;
}
.step-row:hover {
  background: var(--accent-bg);
  border-radius: 10px;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 -12px;
  transition: background 0.2s ease, padding 0.2s ease;
}
.step-num {
  width: 56px;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 1px;
}
.step-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.step-row:hover .step-title {
  color: var(--accent);
}
.step-sub {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.65;
  word-break: keep-all;
}
/* ── CTA 1 (full width) ── */
.cta1 {
  background: var(--accent);
  width: 100%;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.cta1-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}
.cta1-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}
.cta1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 9999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta1-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* tri-pills: cta1(오렌지 배경) 전용 컬러 오버라이드 */
.cta1 .tri-pill {
  border-color: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}
.cta1 .tri-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}
.cta1 .tri-pill--active {
  border-color: var(--white);
  color: var(--accent);
  background: var(--white);
  font-weight: 700;
}

/* ── Section 3: 서비스 특장점 ── */
.features__title {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--black);
  text-align: left;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.features {
  background: var(--warm);
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px var(--content-pad-x);
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.features-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.features-header .section-sub {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}
.features-header .section-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--black);
}
.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.feature-block {
  display: flex;
  align-items: center;
  gap: 48px;
}
.feature-block--reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-num {
  font-size: 48px;
  font-weight: 800;
  color: #FF4D00;
  opacity: 1;
}
.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}
.feature-desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.8;
}
.feature-img {
  width: 440px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #e5e5e5;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CTA 2 (full width) ── */
.cta2 {
  background: var(--black);
  width: 100%;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.cta2-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.cta2-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
}
.cta2-sub {
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
}
.cta2-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
}
.cta2-btn-primary {
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 9999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta2-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,77,0,0.3);
}
.cta2-btn-secondary {
  border: 1px solid #666;
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 9999px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s ease;
}
.cta2-btn-secondary:hover {
  border-color: #aaa;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Section 4: 성공 사례 ── */
.reviews {
  background: var(--warm);
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px var(--content-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.reviews-header .section-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
}
.reviews-header .section-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--black);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
.review-type {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}
.review-rate {
  background: #cc3d00;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}
.review-rows {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.review-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.review-row:last-child { border-bottom: none; }
.review-label {
  font-size: 13px;
  color: #595959;
}
.review-value {
  font-size: 13px;
  color: #555;
}
.review-value--highlight {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.review-strategy {
  background: #F8F8F8;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 0 0 12px 12px;
  min-height: 88px;            /* 1줄/2줄 차이로 카드 높이 들쑥날쑥 방지 */
}
.strategy-label {
  font-size: 11px;
  font-weight: 700;
  color: #595959;
  letter-spacing: 1px;
}
.strategy-text {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}

/* ── Review card image (이미지 위쪽 50%만 노출 + 안쪽 여백) ── */
.review-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 10px 15px 15px 15px;
  background: #010101;
  overflow: hidden;
  border-radius: 0;
  box-sizing: border-box;
}
.review-img img {
  width: 100%;
  height: 200%;
  object-fit: cover;
  object-position: 50% -3px;    /* 위로 3px 끌어올림 */
  transition: transform 0.5s ease;
}
.review-card:hover .review-img img {
  transform: scale(1.04);
  transform-origin: top center;
}

/* ── Base fade-in (대부분 비활성화 — 정적 렌더) ── */
.fade-in {
  opacity: 1;
  transform: none;
}

/* problem-cards만 첫 진입 시 자연스러운 페이드인 유지 */
.problem-cards.fade-in {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.problem-cards.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ── FAQ 섹션 ── */
.faq-section {
  background: var(--black);
  padding: 100px 0;
}
.faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--content-pad-x);
}
.faq-header {
  margin-bottom: 48px;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
}
.faq-more {
  text-align: center;
  margin-top: 36px;
}
.faq-more__link {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--accent);
  border-radius: 9999px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.faq-more__link:hover {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}
.faq-item {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--accent);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 28px 22px;
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .faq-section { padding: 40px 0; }
  .faq-inner { padding: 0 var(--content-pad-x-mobile); }
  .faq-header { margin-bottom: 24px; }
  .faq-q { font-size: 14px; padding: 16px 18px; }
  .faq-a { padding: 0 18px 16px; }
  .faq-more { margin-top: 24px; }
}

/* 모바일: 애니메이션 없이 즉시 노출 + 가로 스크롤 방지 */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
  .fade-in,
  .warn-row,
  .step-row,
  .feature-block,
  .feature-block--reverse,
  .hero .hero-photo,
  .review-card {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Hero stagger children ── */
.hero .hero-left > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero.visible .hero-left > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.hero.visible .hero-left > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.hero.visible .hero-left > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.hero.visible .hero-left > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.hero.visible .hero-left > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.hero.visible .hero-left > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }
.hero.visible .hero-left > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.52s; }

/* Hero accent line expand */
.hero-accent-line {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.25,1,0.5,1);
}
.hero.visible .hero-accent-line {
  transform: scaleX(1);
}

/* Hero underline expand */
.hero-title-line2::after {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.25,1,0.5,1) 0.5s;
}
.hero.visible .hero-title-line2::after {
  transform: scaleX(1);
}

/* Hero photo slide from right */
.hero .hero-photo {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}
.hero.visible .hero-photo {
  opacity: 1;
  transform: translateX(0);
}

/* ── Step rows / Feature blocks: 애니메이션 비활성화 ── */
.step-row,
.feature-block {
  opacity: 1;
  transform: none;
}

/* Feature images hover zoom */
.feature-img img {
  transition: transform 0.5s ease;
}
.feature-img:hover img {
  transform: scale(1.04);
}

/* ── Review cards: each observed individually ── */
.review-card {
  opacity: 1;
  transform: none;
  transition: box-shadow 0.3s ease;
}
.review-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  /* 카드 위치 고정 — 이미지만 확대 (transform 제거) */
}

/* ── CTA pulse button ── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
.cta1-btn {
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-accent {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,0,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255,77,0,0); }
}
.cta2-btn-primary {
  animation: pulse-accent 2.5s ease-in-out infinite;
}

/* ── CTA line expand ── */
.cta2-line {
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.25,1,0.5,1);
}
.cta2.visible .cta2-line {
  transform: scaleX(1);
}

/* ── Hero tags hover ── */
.hero-tag {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,77,0,0.15);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero, .process, .features, .reviews {
    padding-left: 40px;
    padding-right: 40px;
  }
  .cta1, .cta2 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 40px 24px;
  }
  .hero-photo {
    width: 100%;
    height: auto;
    max-height: 480px;
    aspect-ratio: 3 / 4;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-name {
    font-size: 20px;
  }

  .process {
    flex-direction: column;
    gap: 28px;
    padding: 40px var(--content-pad-x-mobile);
  }
  .process-left .section-title {
    font-size: 16px;
  }

  .cta1, .cta2 {
    padding: 36px var(--content-pad-x-mobile);
  }
  .cta1-title {
    font-size: 22px;
  }
  .cta2-title {
    font-size: 24px;
  }
  .cta2-btns {
    flex-direction: column;
    width: 100%;
  }
  .cta2-btn-primary, .cta2-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .features {
    padding: 40px var(--content-pad-x-mobile);
    gap: 32px;
  }
  .features-header .section-title {
    font-size: 26px;
  }
  .feature-block,
  .feature-block--reverse {
    flex-direction: column;
    gap: 16px;
  }
  .feature-img {
    width: 100%;
    height: 200px;
  }
  .feature-title {
    font-size: 20px;
  }

  .reviews {
    padding: 40px var(--content-pad-x-mobile);
    gap: 28px;
  }
  .reviews-header .section-title {
    font-size: 26px;
  }
  .review-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reviews-footer-note {
    margin-top: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── problem-cards: 3카드 섹션 ── */
.problem-cards {
  background: var(--black);
  margin: 30px 0 0;
  padding: 80px max(var(--content-pad-x), calc((100vw - var(--content-max)) / 2 + var(--content-pad-x)));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-card {
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}
.problem-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.problem-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.problem-card:hover .problem-card__img-wrap img {
  transform: scale(1.04);
}
.problem-card__body {
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.problem-card__title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.problem-card__title em {
  font-style: normal;
  color: var(--accent);
}
.problem-card__desc {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  color: #AAAAAA;
  line-height: 1.85;
  font-weight: 400;
  word-break: unset;
}

.problem-card--accent .problem-card__desc {
  color: #CCCCCC;
}
.em-underline {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  color: var(--accent);
  text-decoration-color: var(--accent);
}
/* 모바일: 1열 스택 */
@media (max-width: 768px) {
  .problem-cards {
    grid-template-columns: 1fr;
    padding: 32px var(--content-pad-x-mobile);
    gap: 16px;
  }
  .problem-card {
    border-radius: 12px;
  }
  .problem-card__body {
    padding: 18px 18px 22px;
    gap: 8px;
  }
  .problem-card:hover {
    transform: none;
  }
}
/* 태블릿: 1열, 콘텐츠 640px 폭 유지하되 배경은 풀 너비 */
@media (min-width: 769px) and (max-width: 1024px) {
  .problem-cards {
    grid-template-columns: 1fr;
    padding: 60px max(32px, calc((100vw - 640px) / 2));
  }
}

/* === 상단 고정바 스타일은 base.css 로 이동됨 === */

/* ═══════════════════════════════════════════════════════════
   NEW SECTIONS — 2026-04-24 신규
   영역 width 통일: max-width 1280px, padding 0 80px (모바일 24px)
   ═══════════════════════════════════════════════════════════ */

/* 콘텐츠 영역 width 통일 변수 */
:root {
  --content-max: 1280px;
  --content-pad-x: 80px;
  --content-pad-x-mobile: 24px;
}

/* 1) problem-cards 영역 타이틀 (problem-cards section 내 header) */
.problem-cards .section-intro__inner {
  grid-column: 1 / -1;
  max-width: 880px;
  margin: 0 auto 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 104px 80px 98px;
}
.keywords-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.keywords-bg span {
  position: absolute;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* float 애니메이션 5종 — 회전값을 keyframe 안에 내장 */
@keyframes kw-float-a {
  0%, 100% { transform: rotate(-6deg) translate(0,    0);   }
  50%       { transform: rotate(-5deg) translate(5px, -8px); }
}
@keyframes kw-float-b {
  0%, 100% { transform: rotate(3deg)  translate(0,    0);   }
  55%       { transform: rotate(4deg)  translate(-6px, 6px); }
}
@keyframes kw-float-c {
  0%, 100% { transform: rotate(-9deg) translate(0,    0);   }
  35%       { transform: rotate(-8deg) translate(5px, -5px); }
  70%       { transform: rotate(-10deg) translate(-4px, 4px); }
}
@keyframes kw-float-d {
  0%, 100% { transform: rotate(6deg)  translate(0,    0);   }
  50%       { transform: rotate(5deg)  translate(-5px, -6px); }
}
@keyframes kw-float-e {
  0%, 100% { transform: rotate(4deg)  translate(0,    0);   }
  45%       { transform: rotate(5deg)  translate(6px,  7px); }
}

@keyframes kw-color-ow {
  0%, 100% { color: var(--accent); }
  50%       { color: #ffffff; }
}
@keyframes kw-color-wo {
  0%, 100% { color: #ffffff; }
  50%       { color: var(--accent); }
}

/* float + 컬러 동시 animation: float, color 두 개 콤마로 병기 */
.keywords-bg span:nth-child(1)  { top:  5%; left:  3%;  font-size: 11px; animation: kw-float-a  7s ease-in-out infinite 0s; }                                                            /* 보이스피싱 */
.keywords-bg span:nth-child(2)  { top: 10%; left: 28%;  font-size: 22px; animation: kw-float-b  9s ease-in-out infinite 1.2s, kw-color-ow 5s ease-in-out infinite 0.5s; }              /* 투자사기 */
.keywords-bg span:nth-child(3)  { top:  4%; left: 60%;  font-size: 13px; animation: kw-float-c  6s ease-in-out infinite 0.4s; }                                                          /* 중고거래사기 */
.keywords-bg span:nth-child(4)  { top: 18%; left: 78%;  font-size: 18px; animation: kw-float-d  8s ease-in-out infinite 2.1s, kw-color-wo 6s ease-in-out infinite 1.0s; }              /* 전세사기 */
.keywords-bg span:nth-child(5)  { top: 40%; left:  3%;  font-size: 12px; animation: kw-float-e  7s ease-in-out infinite 0.8s; }                                                          /* 리딩방사기 (10→12) */
.keywords-bg span:nth-child(6)  { top: 32%; left: 43%;  font-size: 28px; animation: kw-float-a 11s ease-in-out infinite 3.0s; opacity: 0.20; }                                          /* 로맨스스캠 */
.keywords-bg span:nth-child(7)  { top: 54%; left: 63%;  font-size: 14px; animation: kw-float-b  8s ease-in-out infinite 1.6s, kw-color-ow 7s ease-in-out infinite 2.0s; }              /* 증권사사칭사기 */
.keywords-bg span:nth-child(8)  { top: 60%; left: 20%;  font-size: 20px; animation: kw-float-c  9s ease-in-out infinite 0.2s; }                                                          /* 부업사기 */
.keywords-bg span:nth-child(9)  { top: 70%; left: 82%;  font-size: 12px; animation: kw-float-d  7s ease-in-out infinite 2.5s; }                                                          /* 코인사기 */
.keywords-bg span:nth-child(10) { top: 78%; left: 36%;  font-size: 16px; animation: kw-float-e  8s ease-in-out infinite 1.0s, kw-color-wo 5s ease-in-out infinite 0.3s; }              /* 대출사기 */
.keywords-bg span:nth-child(11) { top: 88%; left:  6%;  font-size: 12px; animation: kw-float-a  9s ease-in-out infinite 1.8s; }                                                          /* SNS사기 */
.keywords-bg span:nth-child(12) { top: 14%; left: 48%;  font-size: 12px; animation: kw-float-b  7s ease-in-out infinite 0.6s, kw-color-ow 8s ease-in-out infinite 1.5s; }              /* 온라인사기 (10→12, 위치이동) */
.keywords-bg span:nth-child(13) { top: 48%; left: 87%;  font-size: 17px; animation: kw-float-d 10s ease-in-out infinite 0.9s, kw-color-wo 6s ease-in-out infinite 2.4s; }              /* 피싱사기 */
.keywords-bg span:nth-child(14) { top: 24%; left: 13%;  font-size: 19px; animation: kw-float-b  9s ease-in-out infinite 0.3s, kw-color-ow 9s ease-in-out infinite 3.0s; }              /* 해외송금사기 (위치이동) */
.keywords-bg span:nth-child(15) { top: 88%; left: 56%;  font-size: 13px; animation: kw-float-c  8s ease-in-out infinite 1.7s; }                                                          /* 상품권사기 (위치이동) */
.keywords-bg span:nth-child(16) { top: 68%; left: 50%;  font-size: 12px; animation: kw-float-e  9s ease-in-out infinite 0.5s; }                                                          /* 명의도용사기 (10→12, 위치이동) */

/* 모바일: keywords-bg를 타이틀 위/아래로 분리 (가운데 타이틀 영역 비움) */
@media (max-width: 768px) {
  .problem-cards .section-intro__inner {
    padding: 80px 16px 80px;     /* 위/아래 padding 늘려서 키워드 공간 확보 */
  }
  /* 위쪽 영역: 1~8번 (top 0~22%) */
  .keywords-bg span:nth-child(1)  { top:  4%; left:  5%; }   /* 보이스피싱 */
  .keywords-bg span:nth-child(2)  { top: 12%; left: 30%; }   /* 투자사기 */
  .keywords-bg span:nth-child(3)  { top:  3%; left: 58%; }   /* 중고거래사기 */
  .keywords-bg span:nth-child(4)  { top: 18%; left: 70%; }   /* 전세사기 */
  .keywords-bg span:nth-child(5)  { top: 14%; left: 12%; }   /* 리딩방사기 */
  .keywords-bg span:nth-child(6)  { top:  8%; left: 80%; }   /* 로맨스스캠 */
  .keywords-bg span:nth-child(7)  { top: 20%; left: 48%; }   /* 증권사사칭사기 */
  .keywords-bg span:nth-child(8)  { top:  6%; left: 42%; }   /* 부업사기 */
  /* 아래쪽 영역: 9~16번 (top 78~95%) */
  .keywords-bg span:nth-child(9)  { top: 80%; left:  8%; }   /* 코인사기 */
  .keywords-bg span:nth-child(10) { top: 88%; left: 28%; }   /* 대출사기 */
  .keywords-bg span:nth-child(11) { top: 78%; left: 55%; }   /* SNS사기 */
  .keywords-bg span:nth-child(12) { top: 92%; left: 72%; }   /* 온라인사기 */
  .keywords-bg span:nth-child(13) { top: 84%; left: 14%; }   /* 피싱사기 */
  .keywords-bg span:nth-child(14) { top: 78%; left: 38%; }   /* 해외송금사기 */
  .keywords-bg span:nth-child(15) { top: 90%; left: 50%; }   /* 상품권사기 */
  .keywords-bg span:nth-child(16) { top: 86%; left: 78%; }   /* 명의도용사기 */
  /* 폰트 크기 모바일 보정 (너무 크면 겹침) */
  .keywords-bg span {
    font-size: 12px !important;
  }
}

/* PC: 키워드를 타이틀 주변(상단/하단/좌우 가장자리)으로 분산 배치 */
@media (min-width: 769px) {
  /* 상단 6개 (top 4~20%) */
  .keywords-bg span:nth-child(1)  { top:  4%; left:  2%; }   /* 보이스피싱 */
  .keywords-bg span:nth-child(14) { top:  9%; left: 16%; }   /* 해외송금사기 */
  .keywords-bg span:nth-child(2)  { top:  4%; left: 38%; }   /* 투자사기 */
  .keywords-bg span:nth-child(12) { top: 14%; left: 56%; }   /* 온라인사기 */
  .keywords-bg span:nth-child(3)  { top:  6%; left: 70%; }   /* 중고거래사기 */
  .keywords-bg span:nth-child(4)  { top: 13%; left: 84%; }   /* 전세사기 */
  /* 하단 6개 (top 80~93%) */
  .keywords-bg span:nth-child(10) { top: 82%; left:  4%; }   /* 대출사기 */
  .keywords-bg span:nth-child(16) { top: 89%; left: 18%; }   /* 명의도용사기 */
  .keywords-bg span:nth-child(6)  { top: 80%; left: 34%; }   /* 로맨스스캠 */
  .keywords-bg span:nth-child(15) { top: 87%; left: 57%; }   /* 상품권사기 */
  .keywords-bg span:nth-child(11) { top: 82%; left: 74%; }   /* SNS사기 */
  .keywords-bg span:nth-child(7)  { top: 89%; left: 86%; }   /* 증권사사칭사기 */
  /* 좌측 2개 (left 1~3%, top 30~65%) */
  .keywords-bg span:nth-child(5)  { top: 32%; left:  1%; }   /* 리딩방사기 */
  .keywords-bg span:nth-child(8)  { top: 60%; left:  2%; }   /* 부업사기 */
  /* 우측 2개 (left 88~92%, top 30~65%) */
  .keywords-bg span:nth-child(13) { top: 32%; left: 88%; }   /* 피싱사기 */
  .keywords-bg span:nth-child(9)  { top: 60%; left: 90%; }   /* 코인사기 */
}

.section-intro__title {
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.35;
  word-break: keep-all;
  margin: 0;
  position: relative;
  z-index: 1;
}
.section-intro__title .accent {
  color: var(--accent);
}

/* 2) 사기피해회복센터 소개 섹션 (통합) */
.center-intro {
  background: var(--black);
  padding: 0;                       /* banner는 풀 너비, inner에서 padding */
}

/* 2-1) 오렌지 배너 (옛 CTA1 자리) */
.center-intro__banner,
.section-banner {
  background: var(--accent);
  padding: 60px var(--content-pad-x);
  text-align: center;
}
.section-banner__text {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.cta-title-section__text {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: -0.02em;
  word-break: keep-all;
}
.cta-title-section__text .brand {
  font-weight: 700;
  opacity: 0.92;
  font-family: 'Inter', sans-serif;
  margin: 0 4px;
}
@media (max-width: 768px) {
  .section-banner__text, .final-cta__title
  .cta-title-section__text { font-size: 20px; }
  .cta-title-section__text .brand { display: none; }
  .cta-title-section__text br.mo-only { display: none; }
}

/* 2-2) 본문 영역 */
.center-intro__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 100px var(--content-pad-x);
}

/* 2-3) 통계 카드 (먼저 노출) */
.center-intro__stats {
  margin-bottom: 80px;
}

/* 2-4) 헤더 (어떤 곳인가?) */

.center-intro__header .section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.center-intro__lead {
  max-width: 780px;
  margin: 0 auto;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--black);
  line-height: 1.85;
  word-break: keep-all;
}
.center-intro__lead strong {
  color: var(--black);
  font-weight: 700;
}

/* 통계 카드 (about 페이지와 동일 디자인) */
.center-intro__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.center-intro__stats .stat-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.center-intro__stats .stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.center-intro__stats .stat-num {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.center-intro__stats .stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.05em;
}

/* 변호사 약속 (사진 + 인용구 좌우) */
.center-intro__promise {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
}
.promise-photo {
  border-radius: 16px;
  overflow: hidden;
  background: #E1E2E6;
  aspect-ratio: 3 / 4;
}
.promise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promise-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.promise-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  background: var(--accent-bg);
  color: #B23800;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  width: max-content;
  margin: 0;
}
.promise-quote {
  font-family: 'KimjungchulScript', 'Noto Sans KR', sans-serif;
  font-size: clamp(15px, 1.7vw, 17px);
  color: #000000;
  line-height: 1.95;
  word-break: keep-all;
  margin: 0;
  padding: 0;
}
.promise-quote .promise-quote__sign {
  display: block;
  margin-top: 16px;
  font-family: 'KimjungchulScript', 'Noto Sans KR', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  color: #FF4D00 !important;
  text-align: right;
  letter-spacing: 0.05em;
}

/* ═══════════════ 모바일 ═══════════════ */
@media (max-width: 1024px) {
  .center-intro__banner,
  .section-banner,
  .center-intro__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
  .center-intro__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .center-intro__promise {
    grid-template-columns: 280px 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .center-intro__banner,
  .section-banner {
    padding: 28px var(--content-pad-x-mobile);
  }
  .center-intro__inner {
    padding: 40px var(--content-pad-x-mobile);
  }
  .center-intro__header {
    text-align: left;
  }
  .center-intro__header .section-title {
    margin: 0
  }
  .center-intro__lead {
    text-align: left;
    margin: 0;
    color: #fff;
  }
  .center-intro__lead strong {
    color: #fff;
  }
  .center-intro__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 32px;
  }
  .center-intro__stats .stat-card {
    padding: 18px 12px;
  }
  .center-intro__promise {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 20px;
  }
  .promise-photo {
    max-width: 200px;
    margin: 0 auto;
  }

  /* 다크 카드 (모바일 전용) */
  .center-intro__promise {
    background: #0F1419;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.04);
  }
  .center-intro__promise .promise-label {
    background: rgba(255, 77, 0, 0.15);
    color: #ff8c5a;
    border: 1px solid rgba(255, 77, 0, 0.35);
  }
  .center-intro__promise .promise-photo {
    border: 2px solid rgba(255, 77, 0, 0.4);
    box-shadow: 0 8px 24px rgba(255, 77, 0, 0.25);
  }
  .center-intro__promise .promise-quote {
    color: #f0f0f0;
  }
  .center-intro__promise .promise-quote__sign {
    color: #ff8c5a !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   reviews 푸터 노트 (성공사례 끝 작은 글씨)
   ═══════════════════════════════════════════════════════════ */
.reviews-footer-note {
  text-align: center;
  margin: 24px auto 0;
  font-size: 13px;
  color: #595959;
  line-height: 1.7;
  letter-spacing: -0.2px;
  word-break: keep-all;
  padding: 0 var(--content-pad-x-mobile);
}

@media (min-width: 769px) {
  .reviews-footer-note {
    font-size: 14px;
    margin-top: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════
   최종 CTA — 페이지 마지막 상담 안내
   ═══════════════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
}
.final-cta__header {
  background: var(--accent);
  padding: 80px var(--content-pad-x) 72px;
}
.final-cta__body {
  background: #ffffff;
  padding: 56px var(--content-pad-x) 80px;
}
.final-cta__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.final-cta__title {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0;
  word-break: keep-all;
}
.final-cta__title .mo-only {
  display: none;
}
.final-cta__sub {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 40px;
  padding: 12px 24px;
  border-radius: 9999px;
}
.final-cta__highlight {
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(
    120deg,
    var(--accent) 30%,
    #f1c40f 50%,
    var(--accent) 70%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: move-shimmer 2.5s linear infinite;
}
@keyframes move-shimmer {
  0%   { background-position:  200% center; }
  100% { background-position: -200% center; }
}
.final-cta__sub-label {
  font-size: 13px;
  font-weight: 700;
  color: #595959;
  letter-spacing: 0.5px;
}
.final-cta__sub-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.final-cta__sub-label::after {
  content: "—";
  margin-left: 12px;
  opacity: 0.6;
}
.final-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 200px;
  justify-content: center;
}
.final-cta__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.final-cta__btn--phone {
  background: var(--accent);
  color: #ffffff;
}
.btn-label-pc { display: none; }
@media (min-width: 769px) {
  .btn-label-mobile { display: none; }
  .btn-label-pc { display: inline; }
  .final-cta__btn--phone {
    pointer-events: none;
    cursor: default;
  }
}
.final-cta__btn--kakao {
  background: #FAE100;
  color: #381F1F;
}
.final-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* 모바일 */
@media (max-width: 1024px) {
  .final-cta__header { padding: 64px 40px 56px; }
  .final-cta__body   { padding: 48px 40px 64px; }
}
@media (max-width: 768px) {
  .final-cta__header { padding: 27px var(--content-pad-x-mobile); }
  .final-cta__body   { padding: 36px var(--content-pad-x-mobile) 48px; }
  .final-cta__title {
    font-size: 20px;
    margin-bottom: 0;
  }
  .final-cta__title .mo-only {
    display: block;
  }
  .final-cta__sub {
    flex-direction: column;
    gap: 4px;
    padding: 12px 18px;
    margin-bottom: 28px;
  }
  .final-cta__sub-label::after {
    display: none;
  }
  .final-cta__btns {
    flex-direction: row;
    gap: 10px;
  }
  .final-cta__btn {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    font-size: 15px;
  }
}

/* Toast Notice 스타일은 base.css 로 이동됨 (FOUC 방지) */
