/* JSYCOMPANY — 기획서 2버전 (index 디자인 + plan 콘텐츠) */

.plan2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.plan2-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  opacity: 0.85;
}

.plan2-about-lead {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.45;
  color: #fff;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
  letter-spacing: -0.02em;
}
.plan2-about-lead em {
  color: var(--accent);
  font-style: normal;
}

.plan2-prose {
  max-width: 760px;
  margin: 0 auto;
}
.plan2-prose p {
  font-size: 16px;
  line-height: 1.85;
  color: #a1a1a6;
  margin: 0 0 1.4em;
}
.plan2-prose p strong {
  color: #e9e9ea;
  font-weight: 700;
}
.plan2-pull {
  margin: 36px 0;
  padding: 26px 28px;
  border-radius: 0 14px 14px 0;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: #fff;
  font-weight: 700;
}

.plan2-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 48px auto 0;
}
.plan2-principle {
  background: #131316;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.plan2-principle:hover {
  transform: translateY(-4px);
  border-color: var(--accent-line);
}
.plan2-principle .big {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 34px);
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 10px;
}
.plan2-principle .t {
  font-size: 14px;
  color: #a1a1a6;
  line-height: 1.6;
}

/* 회사소개 — 타임라인 (가독성) */
.plan2-about-section {
  --about-text: #ececee;
  --about-text-soft: #d4d4d8;
  --about-surface: #17171b;
  --about-surface-alt: #1c1c21;
}

.plan2-about-inner {
  text-align: left !important;
}

.plan2-about-head {
  text-align: center;
  margin-bottom: 40px;
}

.plan2-about-title {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
  margin: 0 auto;
  max-width: 720px;
}

.plan2-about-principles--top {
  margin: 0 0 48px;
  max-width: none;
}

.plan2-about-section .plan2-principle {
  background: var(--about-surface-alt);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 32px 22px;
}

.plan2-about-section .plan2-principle .big {
  font-size: clamp(36px, 5vw, 48px);
}

.plan2-about-section .plan2-principle .t {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--about-text);
  line-height: 1.55;
}

.plan2-about-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.plan2-about-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-line), rgba(255, 212, 0, 0.08));
  pointer-events: none;
}

.plan2-about-chapter {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--about-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px) clamp(22px, 3vw, 32px);
  position: relative;
  z-index: 1;
}

.plan2-about-chapter__marker {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.plan2-about-chapter__picture {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.plan2-about-chapter__img {
  width: 100%;
  height: clamp(168px, 24vw, 220px);
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  background: #1a1a1d;
}

.plan2-about-chapter__content p {
  font-size: clamp(20px, 2.6vw, 24px);
  line-height: 1.85;
  color: var(--about-text);
  margin: 0 0 1.15em;
  word-break: keep-all;
}

.plan2-about-chapter__content p:last-child {
  margin-bottom: 0;
}

.plan2-about-em {
  font-size: clamp(23px, 3vw, 28px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.55 !important;
}

.plan2-about-pause {
  font-size: clamp(26px, 3.5vw, 34px) !important;
  color: var(--accent) !important;
  letter-spacing: 0.2em;
  margin: 0.5em 0 !important;
  line-height: 1 !important;
}

.plan2-about-accent {
  color: var(--accent);
}

.plan2-about-chapter--quote {
  background: linear-gradient(135deg, rgba(255, 212, 0, 0.14), rgba(255, 212, 0, 0.04));
  border-color: var(--accent-line);
}

.plan2-about-chapter--quote .plan2-about-chapter__content p {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

.plan2-about-chapter--closing {
  background: var(--about-surface-alt);
  border-color: rgba(255, 212, 0, 0.22);
}

.plan2-about-chapter--closing .plan2-about-chapter__content p:last-child {
  color: #fff;
  font-weight: 600;
}

.plan2-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.plan2-about-tags span {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* legacy card classes — keep for safety */
.plan2-about-story {
  display: none;
}

#about.plan2-about-section .plan2-about-inner,
#about.plan2-about-section .plan2-about-chapter__content {
  text-align: left !important;
}

#about.plan2-about-section .plan2-about-chapter__content p {
  color: var(--about-text) !important;
}

#about.plan2-about-section .plan2-about-em,
#about.plan2-about-section .plan2-about-chapter--quote p,
#about.plan2-about-section .plan2-about-chapter--closing p:last-child {
  color: #fff !important;
}

.plan2-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.plan2-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}
.plan2-step__no {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}
.plan2-step__card {
  background: #131316;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
}
.plan2-step__title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.plan2-step__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: #a1a1a6;
  margin: 0;
}
.plan2-process-note {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #7a7a80;
  text-align: center;
}

.plan2-price-sub {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}
.plan2-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.plan2-prod {
  background: #131316;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.plan2-prod--feature {
  border-color: var(--accent-line);
  background: linear-gradient(160deg, #16140a, #131316);
}
.plan2-prod__name {
  font-size: 13.5px;
  color: #a1a1a6;
  line-height: 1.5;
  margin-bottom: 12px;
  min-height: 40px;
}
.plan2-prod__price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.plan2-prod__price span {
  font-size: 15px;
  font-weight: 600;
  color: #a1a1a6;
}
.plan2-prod__vat {
  font-size: 12px;
  color: #7a7a80;
  margin-top: 6px;
}

.plan2-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.plan2-tier {
  position: relative;
  background: #131316;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 18px;
  text-align: center;
}
.plan2-tier--best {
  border-color: var(--accent-line);
  background: linear-gradient(160deg, #16140a, #131316);
}
.plan2-tier__flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0b;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan2-tier__amt {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.plan2-tier__amt small {
  font-size: 18px;
  font-weight: 600;
}
.plan2-tier__plus {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.plan2-tier__line {
  font-size: 13.5px;
  line-height: 1.65;
  color: #a1a1a6;
}
.plan2-tier__line b {
  color: #fff;
}

.plan2-lms-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.plan2-lms-table th,
.plan2-lms-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14.5px;
}
.plan2-lms-table th {
  color: #7a7a80;
  font-weight: 600;
  font-size: 13px;
}
.plan2-lms-table td {
  color: #cfcfd2;
}
.plan2-lms-table td b {
  color: #fff;
}
.plan2-price-foot {
  font-size: 14.5px;
  line-height: 1.75;
  color: #a1a1a6;
  max-width: 720px;
}
.plan2-price-foot strong {
  color: #fff;
}

.plan2-side-box {
  max-width: 520px;
  margin: 0 auto;
  background: #131316;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
}
.plan2-side-box__icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.plan2-side-box__t {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.plan2-side-box__d {
  font-size: 15px;
  color: #a1a1a6;
  margin-bottom: 24px;
  line-height: 1.6;
}

.plan2-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 36px;
}
.plan2-hero-stat .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.plan2-hero-stat .lbl {
  font-size: 13px;
  color: #7a7a80;
  margin-top: 6px;
}

/* stats banner — 숫자 카운팅 + 라벨 아래→위 */
.stats-banner .stats-heading,
.stats-banner .stats-num,
.stats-banner .stats-label {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.stats-banner.stats-banner--in .stats-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.stats-banner.stats-banner--in .stats-item:nth-child(1) .stats-num { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.stats-banner.stats-banner--in .stats-item:nth-child(1) .stats-label { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.stats-banner.stats-banner--in .stats-item:nth-child(2) .stats-num { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
.stats-banner.stats-banner--in .stats-item:nth-child(2) .stats-label { opacity: 1; transform: translateY(0); transition-delay: 0.38s; }
.stats-banner.stats-banner--in .stats-item:nth-child(3) .stats-num { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.stats-banner.stats-banner--in .stats-item:nth-child(3) .stats-label { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
.stats-banner.stats-banner--in .stats-item:nth-child(4) .stats-num { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }
.stats-banner.stats-banner--in .stats-item:nth-child(4) .stats-label { opacity: 1; transform: translateY(0); transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .stats-banner .stats-heading,
  .stats-banner .stats-num,
  .stats-banner .stats-label {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .plan2-prod-grid,
  .plan2-tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .plan2-principles,
  .plan2-about-principles {
    grid-template-columns: 1fr;
  }
  .plan2-about-timeline::before {
    left: 21px;
  }
  .plan2-about-chapter {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 22px 18px;
  }
  .plan2-about-chapter__marker {
    width: 44px;
    height: 44px;
    font-size: 14px;
    border-radius: 12px;
  }
  .plan2-about-chapter__content p {
    font-size: 20px !important;
    line-height: 1.82 !important;
    color: #ececee !important;
  }
  .plan2-about-em {
    font-size: 22px !important;
  }
  .plan2-about-chapter--quote .plan2-about-chapter__content p {
    font-size: 23px !important;
  }
  .plan2-about-tags span {
    font-size: 17px;
    padding: 11px 16px;
  }
  .plan2-about-section .plan2-principle .t {
    font-size: 18px !important;
  }
  .plan2-about-inner,
  .plan2-about-timeline,
  .plan2-about-chapter,
  .plan2-about-chapter__content {
    text-align: left !important;
  }
  .plan2-prod-grid,
  .plan2-tier-grid {
    grid-template-columns: 1fr;
  }
  .plan2-step {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
  .plan2-step__no {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }
}
