/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.site-header .logo img {
  width: auto;
}

/* 데스크톱 GNB — .gnb 클래스로만 적용 */
.site-header .gnb {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header .gnb a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.15s;
  white-space: nowrap;
}

.site-header .gnb a:hover {
  color: var(--primary);
}

.site-header .btn {
  height:38px;
  font-size: 1rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* 햄버거 버튼 — 기본 숨김 */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.15s ease;
}

/* 햄버거 열림 상태 → X 형태 */
.mobile-menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 모바일 드롭다운 — 기본 완전 숨김 */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 35, 75, 0.08);
}

.mobile-nav a {
  display: block;
  padding: 15px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: background 0.15s, color 0.15s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

/* JS가 .open 클래스를 붙일 때만 표시 */
.mobile-nav.open {
  display: flex;
}

/* =========================================
   SECTION-HERO
   ========================================= */
.section-hero {
  overflow: hidden;
  background-image: url(../images/bg-hero01.jpg);
  background-size: cover;
  background-color: #e2eaed;
  position: relative;
  overflow: hidden;
  background-position: bottom;
}

.section-hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 70% auto;
  align-items: center;
  gap: 0;
}

.section-hero .content-container {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(300px, 28vw, 440px);
}

.section-hero .content-container img {
  display: block;
  vertical-align: bottom;
}

.section-hero .text-container {
  text-align: left;
  margin-bottom: 0;
  z-index: 3;
  padding: 60px 0;
}

/*.section-hero .text-container .mobile {
    display: none;
}*/ 

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary-light01);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
  border-radius: 100px;
  border: 1px solid var(--primary-light01);
}
.hero-caption {
    color:var(--formgray) !important;
}
.section-hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.5rem);
  margin: 10px 0;
  letter-spacing: -0.03em;
  word-break: keep-all;
  line-height: 1.2;
  color:var(--formgray);
}

.section-hero h1 em {
  font-style: normal;
  color: var(--primary);
}

.section-hero .hero-desc {
  font-size: 1.0625rem;
  color: var(--text-sub);
  margin: 20px 0 20px;
  word-break: keep-all;
  line-height: 1.5;
  color:var(--formgray);
}

.hero-btns {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-meta {
  font-size: 0.8125rem;
  color: var(--text-sub);
}

.hero-time-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 24px;
}

.hero-time-item .time-label {
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-bottom: 4px;
}

.hero-time-item .time-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-sub);
}

.hero-checklist li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='9' fill='%230d58fc'/%3E%3Cpath d='M5 9L7.5 11.5L13 6.5' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon img {
  width: 22px;
  height: 22px;
}

.stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-sub);
  margin-top: 2px;
}

/*------------------------ Partner --------------------------*/
h2 {
  font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    margin-top: 10px;
}
h3 {
  font-size: 1.2rem;
    font-weight: 600;
    font-weight: 400;
    line-height: 1.5;
}
.section-partner {
  padding: 100px 0 ;
  background-color: #ffffff;
  color: #111111;
}
.section-partner .text-container {
    text-align: center;
}
.section-partner .text-container h2 {
    font-weight: 700;
}
.section-partner .text-container h3 {
    margin:0;
    color:#333;
}

.section-partner .content-container {
  text-align: center;
}

/* 로고 행 */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-bottom: 40px;
}

.partner-logo-item img {
  height: 220px;
  width: auto;
}

.partner-x {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
}

/* 설명 문장 */
.partner-desc {
  font-size: 1.2rem;
  color: #333333;
}

/* =========================================
   SECTION-WHY (왜 지금 AI를 배워야 할까요?)
   ========================================= */
.section-why {
  padding: 100px 0;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 35, 75, 0.13);
}

.why-card-icon {
  width: 90px;
  height: 90px;
  background: var(--primary-soft);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin: 0 auto;
}

.why-card-icon img {
  width: 50px;
  height: 50px;
}

.why-card .card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 16px;
}

.why-card h3 {
  margin-bottom: 10px;
  word-break: keep-all;
}

.why-card p {
  font-size: 0.9375rem;
  word-break: keep-all;
  line-height: 1.7;
}

.why-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 20px;
}

/* =========================kit Section========================= */
.kit-badge {
    color: #40f2df;
    font-weight: 600;
}
.section-kit {
  padding: 60px 0;
  background-color: #dceafd;
  color: #ffffff;
  text-align: center;
}
.section-kit .container {
    text-align: center;
}

/* -- 비디오 슬아이드 + 부드러운 전환 -- */

.video-rotator {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px; /* 필요 없으면 제거 */
  max-width: 900px;
  margin: 0 auto;
}

/* 16:9 유지하고 싶으면 사용 (필요 없으면 제거) */
.video-rotator::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-rotator > .vr-track {
  position: absolute;
  inset: 0;
}

.vr-track {
  display: flex;
  height: 100%;
  transform: translateX(0%);
  transition: transform 500ms ease;
}

.vr-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.vr-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* 페이드 느낌(선택) */
  opacity: 0.35;
  transition: opacity 500ms ease;
}

.vr-slide.is-active .vr-video {
  opacity: 1;
}


/* =========================================
   SECTION-CONCERN (이런 고민 있으신가요?)
   ========================================= */
.section-concern {
  background: var(--bg);
  padding: 100px 0;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.section-concern .concern-card {
  padding:0; 
  overflow: hidden;
}

.section-concern .card-txt-container {
    padding:20px;
}

.section-concern .concern-card:nth-child(1) .card-img-container {
    background-image: url(../images/concern-job.jpg);
    height: 200px;
    background-size: cover;
    background-position: center center;
}

.section-concern .concern-card:nth-child(2) .card-img-container {
    background-image: url(../images/concern-work.jpg);
    height: 200px;
    background-size: cover;
    background-position: center center;
}

.section-concern .concern-card:nth-child(3) .card-img-container {
    background-image: url(../images/concern-compete.jpg);
    height: 200px;
    background-size: cover;
    background-position: center center;
}

.section-concern .concern-card:nth-child(4) .card-img-container {
    background-image: url(../images/concern-time.jpg);
    height: 200px;
    background-size: cover;
    background-position: center center;
}

.section-concern .concern-card:nth-child(5) .card-img-container {
    background-image: url(../images/concern-tool.jpg);
    height: 200px;
    background-size: cover;
    background-position: center center;
}

.section-concern .concern-card:nth-child(6) .card-img-container {
    background-image: url(../images/concern-future.jpg);
    height: 200px;
    background-size: cover;
    background-position: center center;
}

.concern-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.concern-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(13, 88, 252, 0.1);
  transform: translateY(-3px);
}

.concern-card-img {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 16px;
}

.concern-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.concern-card h3 {
  font-size: 1.3rem;
  word-break: keep-all;
  margin-bottom: 8px;
}

.concern-card p {
  font-size: 1rem;
  word-break: keep-all;
  line-height: 1.6;
}

.concern-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 14px;
}

/* =========================================
   SECTION-SOLUTION (실무 중심 AI 교육)
   ========================================= */
.section-solution {
  background: var(--bg-soft);
  padding: 100px 0;
}

.text-primary {
  color: var(--primary);
  font-style: normal;
}

.text-primary-light01 {
  color: var(--primary-light01);
  font-style: normal;
}

/* 전체 바디: 좌측 캐릭터 + 우측 카드 영역 */
.solution-body {
  display: grid;
  align-items: start;
}

/* 좌측 — 큰 해보 캐릭터 */
.solution-char-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.solution-char-wrap img {
  width: 100%;
  max-width: 300px;
  display: block;
}

.solution-bubble {
  position: relative;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 14px 22px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  line-height: 1.45;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(15, 35, 75, 0.08);
  width: fit-content;
}

.solution-bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--white);
}

.solution-bubble::before {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 13px solid var(--line);
}

/* 우측 — 카드 전체 래퍼 */
.solution-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 상단 3열 카드 행 */
.solution-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* 하단 행: 카드 1 + 강조박스 + 작은 해보 */
.solution-bottom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: stretch;
}

/* 공통 카드 */
.solution-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(15, 35, 75, 0.12);
}

.solution-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
}

.solution-card h3 {
  font-size: 1rem;
  font-weight: 700;
  word-break: keep-all;
  margin: 0;
}

.solution-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-card-icon img {
  width: 32px;
  height: 32px;
}

.solution-card p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.65;
  word-break: keep-all;
  margin: 0;
}

/* 강조 박스 — "이 모든 혜택을 한 번에!" */
.solution-highlight {
  background: var(--primary-soft01);
  background-image: url(../images/haebo-character-small.png);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--primary-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}



.solution-highlight-icon {
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-highlight-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.check-badge {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1167f5;
  color: #fff;
  font-size: 34px;
  font-weight: 800;

  /* 톱니 느낌 */
  clip-path: polygon(
    50% 0%, 58% 8%, 69% 4%, 75% 14%,
    86% 14%, 90% 25%, 100% 31%, 96% 42%,
    100% 50%, 96% 58%, 100% 69%, 90% 75%,
    86% 86%, 75% 86%, 69% 96%, 58% 92%,
    50% 100%, 42% 92%, 31% 96%, 25% 86%,
    14% 86%, 10% 75%, 0% 69%, 4% 58%,
    0% 50%, 4% 42%, 0% 31%, 10% 25%,
    14% 14%, 25% 14%, 31% 4%, 42% 8%
  );
}

.check-badge span {
  transform: translateY(-1px);
}

.solution-highlight strong {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  word-break: keep-all;
  line-height: 1.35;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--white);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
}

.solution-tag-down {
  background: var(--white);
  color: var(--danger);
}

/* 하단 작은 해보 */
.solution-char-small {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.solution-char-small img {
  width: 130px;
  height: auto;
  display: block;
}

.solution-benefit-area {
  max-width: 1180px;
  margin: 0 auto;
}

.benefit-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  position: relative;
  min-height: 420px;
  padding: 52px 28px 34px;
  border: 1px solid rgba(12, 89, 253, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.benefit-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c59fd 0%, #0048e8 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(12, 89, 253, 0.28);
}

.benefit-img {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 116px;
  height: 116px;
  margin: 0 auto 28px;
  border-radius: 30px;
  background: #f3f7ff;
}

.benefit-img img {
  display: block;
  max-width: 82px;
  max-height: 82px;
  object-fit: contain;
}

.benefit-card h3 {
  margin: 0;
  color: #07142f;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.benefit-card h3 em {
  color: #0c59fd;
  font-style: normal;
}

.benefit-line {
  display: block;
  width: 40px;
  height: 2px;
  margin: 28px auto;
  background: #d8e1f3;
}

.benefit-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.03em;
}

.benefit-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 140px;
  margin-top: 28px;
  padding: 0 20px;
  border: 1px solid rgba(12, 89, 253, 0.18);
  border-radius: 12px;
  background: linear-gradient(135deg, #f5f9ff 0%, #edf5ff 100%);
  overflow: hidden;
}

.benefit-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 58px;

  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0c59fd;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}

.benefit-banner-text strong {
  display: block;
  color: #07142f;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.benefit-banner-text strong em {
  color: #0c59fd;
  font-style: normal;
}

.benefit-banner-text p {
  margin: 8px 0 0;
  color: #475569;
  font-size: 17px;
  font-weight: 600;
}

.benefit-chip-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.benefit-chip-list li {
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: #0c59fd;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.benefit-chip-list li:last-child {
  color: #ff3b30;
}

.benefit-character {
  position: absolute;
  right: 18px;
  bottom: -6px;
  width: 150px;
  height: auto;
  pointer-events: none;
}


/* =========================================
   SECTION-EXPERT (현장을 아는 전문가)
   ========================================= */
.section-expert {
  padding: 100px 0;
  background: var(--bg-soft);
}

.section-expert .award01 {
    margin-top:50px;
}

.section-expert .container {
  background-repeat: no-repeat;
  background-position: bottom right;
}

.expert-inner {
  display: grid;
  grid-template-columns: 70% auto;
  align-items: end;
}

.expert-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 6px 30px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.expert-content h2 {
  margin-bottom: 16px;
  word-break: keep-all;
}

.expert-content .expert-desc {
  font-size: 1rem;
  color: var(--text-sub);
  margin-bottom: 32px;
  word-break: keep-all;
  line-height: 1.7;
}

.expert-cols {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  margin-top: 50px;
}

.expert-col li ul {
  width: 100%;
  margin: 8px 0 0 0;
  padding-left: 0;
}

.expert-col li ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
  padding-left: 0;
  color: var(--text-sub);
  font-size: 0.875rem;
  line-height: 1.5;
}

.expert-col li ul li::before {
  content: "-";
  flex: 0 0 auto;
  color: var(--primary);
  font-weight: 700;
  margin-left:15px;
}

.section-expert .txt {
    display: flex;
    align-items: center;
    gap: 12px;
}

.expert-col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.expert-col-title img {
  width: 60px;
  height: auto;
}

.expert-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expert-col ul li {
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.5;
  word-break: keep-all;
}

.expert-col > ul > li {
  align-items: flex-start;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--text-sub);
  line-height: 1.5;
  word-break: keep-all;
}

.expert-col > ul > li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
  margin-right:10px;
}

.expert-visual {
  position: relative;
}

.expert-visual img {
  width: 70%;
}

.expert-award {
  bottom: -20px;
  justify-content: center;
  left: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
}

.expert-award::before,
.expert-award::after {
  content: "";
  flex: 1; /* 👈 양쪽 자동 늘어남 */
  height: 3px;
  background: #2267fd; /* 파란색 */
  opacity: 0.7; /* 살짝 연하게 */
}

.expert-award img {
  width: 70px;
  border-radius: 0;
  box-shadow: none;
}

.expert-award .award-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  flex-wrap: nowrap;
}

.expert-award .award-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-sub);
}

/* =========================================
   SECTION-INSTITUTE (학교·기관 도입)
   ========================================= */
.section-institute {
  background: var(--navy);
  background-image: url(../images/bg-01.jpg);
  padding: 100px 0;
}

.section-institute .text-container h2 {
  color: var(--white);
}

.section-institute .text-container p {
  color: rgba(255, 255, 255, 0.65);
}

.section-institute .text-container .section-badge {
  background: rgba(13, 88, 252, 0.3);
  color: rgba(255, 255, 255, 0.9);
}

.institute-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  width: 80%;
  margin: 0 auto;
}

.institute-card {
  background: rgba(1 11 22 / 50%);
  border: 1px solid rgba(72, 157, 255, 0.5);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(14px);
}

.institute-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13, 88, 252, 0.25);
}

.institute-card-icon {
  background: rgb(0 121 255 / 40%);
  border-radius: 999px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:0 auto 30px;
}

.institute-card-icon img {
  width: 70px;
  height: 70px;
}

.institute-card h3 {
  color: var(--white);
  margin-bottom: 10px;
  word-break: keep-all;
}

.institute-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  word-break: keep-all;
  line-height: 1.65;
}

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

/* =========================
   Courses Section (Dark grid like left)
========================= */

.section-courses {
  padding: 60px 0;
  background:#012a8e;
}

.section-courses .course-guide-btn-wrap {
    text-align: center;
}

.section-courses .text-container {
  text-align: center;
  margin-bottom: 60px;
}

.section-courses .text-container .label {
  display: inline-block;
  color: #40f2df;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-size: 1rem;
  padding: 5px 20px;
    border: 1px solid;
    border-radius: 999px;
}

.section-courses .text-container h2 {
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  color:#fff;
}

.section-courses .text-container h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

.section-courses .content-container {
  padding: 20px;
  background: rgb(125 125 125 / 30%);
  border-radius: 30px;
}

.section-courses .course-footnote {
  color:#fff;
  margin-top: 40px;
}

/* grid */
.grid {
  display: grid;
  gap: 10px;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* card */
.course-card {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 18px 18px 20px;
  box-shadow: none;
  position: relative;
   display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card .card-img {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 14px;
}

.course-card .card-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

/* badges */
.course-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  position: absolute;
  top:19px;
}

.course-footnote {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.badge-outline {
  color: #fff;
  background: var(--primary);
}

.badge-danger {
  color: #fff;
  background: #000;
}

/* title/desc/button */
.course-card .card-title {
  display: grid;
  grid-template-columns: 30px 1fr; /* 체크박스 폭 + 텍스트 */
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  min-height: 49px;
  margin-top: 15px;
  align-items: start;
  text-align: left;
  gap: 8px;
  min-height: 52px;
}

.course-card .card-desc {
  line-height: 1.5;
  font-size: 1.1rem;
  min-height: 55px; /* 카드 높이 정렬 */
  margin: 0;
  font-weight: 300;
  text-align: left;
}

.course-card .btn {
  margin-top: auto;
  width: 100%;
}

/* button */
.course-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  border-radius: 10px;
  text-decoration: none;
  background: #bdd6ff;
  font-size: 1.1rem;
  color: var(--primary);
  border: 2px solid #89b5fd;
  margin-top: 10px;
}
/* (프로젝트 공통 버튼 클래스가 있다면 유지, 없으면 아래로 기본 정의) */
/* 아이콘 */
.course-intro-icon {
  order: 1;
  width: 110px;
  height: auto;
}
.course-intro-icon img {
  width: 100%;
  height: auto;
  display: block;
}
/* 하단 고정폼만 fixed */
.fixed-form-box {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  bottom: 24px !important;
  transform: translateX(-50%) translateY(0) !important;
  z-index: 9999 !important;

  width: min(90%, 1280px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) minmax(280px, 1.4fr) minmax(220px, 1fr);
  gap: 12px;
  align-items: center;

  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(12, 89, 253, 0.22);

  opacity: 1;
  visibility: visible;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.fixed-form-box.is-hidden {
  transform: translateX(-50%) translateY(140%) !important;
  opacity: 0;
  pointer-events: none;
}

/* 기존 하단 상담폼은 일반 배치 */
#consult .form-box:not(.fixed-form-box) {
  position: static !important;
  transform: none !important;
  width: 100%;
  max-width: none;
  margin: 0;
}
.container-form form {
  display: flex;
  margin: 26px auto 0;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(64, 242, 223, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

  display: grid;
  grid-template-columns: 20% 20% 33% 23%;
  gap: 12px;
  align-items: center;
}
/* fixed 폼 숨김용 */
.container-form.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 200ms ease, transform 200ms ease;
}

/*=======================모달팝업관련css====================*/
.course-guide-modal{
  position:fixed;
  inset:0;
  z-index:10000;
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
}

.course-guide-modal.is-active{
  opacity:1;
  visibility:visible;
}

.course-guide-modal__dim{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
  backdrop-filter:blur(5px);
}

.course-guide-modal__panel{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%) scale(.96);
  width:min(920px, 92vw);
  max-height:90vh;
  background:#fff;
  border-radius:24px;
  padding:34px;
  box-sizing:border-box;
  overflow:visible;
  transition:.25s ease;
}

.course-guide-modal.is-active .course-guide-modal__panel{
  transform:translate(-50%, -50%) scale(1);
}

.course-guide-modal__close{
  position:absolute;
  top:-22px;
  right:-22px;
  width:54px;
  height:54px;
  border:0;
  border-radius:50%;
  background:#000;
  box-shadow:0 10px 28px rgba(0,0,0,.25);
  font-size:1rem;
  line-height:1;
  color:#fff;
  cursor:pointer;
  z-index:2;
  border: 2px solid #fff;
}

.course-guide-modal__body{
  max-height:calc(90vh - 120px);
  overflow-y:auto;
}

.course-guide-modal__body img{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
}

.course-guide-btn{
  position: relative;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin-top: 20px;
  gap:6px;

  width:min(100%, 460px);

  padding:18px 24px;

  border:1px solid rgba(64,242,223,.45);
  border-radius:18px;

  background:linear-gradient(
    135deg,
    rgba(13,88,252,.95) 0%,
    rgba(8,48,168,.95) 100%
  );

  box-shadow:
    0 14px 30px rgba(13,88,252,.28),
    inset 0 1px 0 rgba(255,255,255,.18);

  color:#fff;

  cursor:pointer;

  overflow:hidden;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.course-guide-btn::before{
  content:"";

  position:absolute;
  inset:0;

  background:linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.14) 45%,
    transparent 100%
  );

  transform:translateX(-120%);
  transition:transform .7s ease;
}

.course-guide-btn:hover{
  transform:translateY(-2px);

  border-color:rgba(64,242,223,.8);

  box-shadow:
    0 20px 40px rgba(13,88,252,.34),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.course-guide-btn:hover::before{
  transform:translateX(120%);
}

.course-guide-btn span{
  position:relative;
  z-index:1;

  font-size:18px;
  font-weight:800;
  line-height:1.3;
  letter-spacing:-0.02em;

  color:#fff;
}

.course-guide-btn small{
  position:relative;
  z-index:1;

  font-size:13px;
  font-weight:500;
  line-height:1.4;

  color:rgba(255,255,255,.78);
}


/* =========================================
   SECTION-REASON (왜 배움과나눔 선택?)
   ========================================= */
.section-reason {
  background: var(--bg);
  padding: 100px 0;
}

.reason-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reason-badge-item {
  text-align: center;
  padding: 28px 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-width: 160px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.reason-badge-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.reason-badge-item img {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
}

.reason-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.reason-desc {
  font-size: 0.8125rem;
  color: var(--text-sub);
  word-break: keep-all;
}

.reason-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px 90px;
  background:
    radial-gradient(circle at 12% 78%, rgba(12, 89, 253, 0.12) 0, transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(12, 89, 253, 0.08) 0, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.reason-section::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 380px;
  height: 260px;
  background: rgba(12, 89, 253, 0.07);
  border-radius: 48px;
  transform: rotate(-12deg);
}

.reason-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 20px;
  margin-bottom: 26px;
  border: 1px solid rgba(12, 89, 253, 0.35);
  border-radius: 999px;
  color: #0c59fd;
  font-size: 15px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.76);
}

.reason-title {
  margin: 0;
  color: #101827;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.05em;
}

.reason-title strong {
  color: #0c59fd;
  font-weight: 900;
}

.reason-title-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 26px 0 58px;
}

.reason-title-line span {
  width: 62px;
  height: 5px;
  border-radius: 999px;
  background: #0c59fd;
}

.reason-title-line i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0c59fd;
}

.reason-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: end;
  gap: 36px;
}

.reason-character {
  position: relative;
  min-height: 330px;
  text-align: left;
}

.reason-character img {
  position: relative;
  z-index: 2;
  display: block;
  width: 250px;
  max-width: 100%;
  margin: 64px auto 0;
}

.reason-bubble {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 22px 24px;
  border: 2px solid #0c59fd;
  border-radius: 48% 52% 46% 54%;
  color: #0c59fd;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  background: #fff;
  transform: rotate(-7deg);
  box-shadow: 0 14px 30px rgba(12, 89, 253, 0.12);
}

.reason-bubble::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: -14px;
  width: 24px;
  height: 18px;
  border-right: 2px solid #0c59fd;
  border-bottom: 2px solid #0c59fd;
  background: #fff;
  transform: rotate(28deg);
}

.reason-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 20px 0;
}

.reason-stat {
  position: relative;
  min-height: 210px;
  padding: 0 22px;
}

.reason-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: 0;
  width: 1px;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(12, 89, 253, 0.22), transparent);
}

.reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #0c59fd;
  font-size: 42px;
  background: #eef4ff;
}

.reason-stat strong {
  display: block;
  margin-bottom: 14px;
  color: #0c59fd;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.reason-stat strong span {
  font-size: 0.55em;
}

.reason-stat p {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.reason-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
  padding-right: 70px;
}

.reason-bottom p {
  position: relative;
  margin: 0;
  color: #111827;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.reason-bottom p::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -10px;
  height: 12px;
  border-bottom: 3px solid #0c59fd;
  border-radius: 50%;
  transform: rotate(-2deg);
}

.reason-bottom p strong {
  color: #0c59fd;
  font-size: 1.15em;
}

.reason-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0c59fd 0%, #3b82ff 100%);
  box-shadow: 0 22px 44px rgba(12, 89, 253, 0.28);
}

.reason-badge i {
  font-size: 34px;
  margin-bottom: 8px;
}

.reason-badge strong {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.reason-badge span {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
}

.bn-reason {
  position: relative;
  overflow: hidden;
  padding: 88px 20px 72px;
  background:
    radial-gradient(circle at 92% 4%, rgba(12, 89, 253, 0.09) 0, transparent 25%),
    radial-gradient(circle at 0% 78%, rgba(12, 89, 253, 0.1) 0, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.bn-reason::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -110px;
  width: 360px;
  height: 360px;
  border: 26px solid rgba(12, 89, 253, 0.06);
  border-radius: 50%;
}

.bn-reason__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.bn-reason__heading {
  text-align: center;
}

.bn-reason__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 20px;
  margin-bottom: 22px;
  border: 1px solid rgba(12, 89, 253, 0.55);
  border-radius: 999px;
  color: #0c59fd;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: rgba(255, 255, 255, 0.76);
}

.bn-reason__title {
  margin: 0;
  color: #101827;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.18;
  letter-spacing: -0.065em;
}

.bn-reason__title span {
  color: #0c59fd;
}

.bn-reason__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: #0c59fd;
  box-shadow: 24px 0 0 -1px #0c59fd;
}

.bn-reason__desc {
  margin: 22px 0 0;
  color: #5b6475;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.bn-reason__body {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: end;
  gap: 34px;
  margin-top: 34px;
}

.bn-reason__mascot {
  position: relative;
  min-height: 390px;
}


.bn-reason__mascot img {
  position: absolute;
  left: 22px;
  bottom: 8px;
  z-index: 2;
  display: block;
  max-width: 100%;
}

.bn-reason__bubble {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 180px;
  min-height: 118px;
  margin: 0;
  padding: 26px 24px;
  border: 2px solid #0c59fd;
  border-radius: 56% 44% 52% 48%;
  color: #0c59fd;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  letter-spacing: -0.05em;
  background: #ffffff;
  transform: rotate(-8deg);
}

.bn-reason__bubble::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: -13px;
  width: 24px;
  height: 22px;
  border-right: 2px solid #0c59fd;
  border-bottom: 2px solid #0c59fd;
  background: #ffffff;
  transform: rotate(28deg);
}

.bn-reason__content {
  min-width: 0;
}

.bn-reason__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bn-reason-card {
  padding: 34px 28px 26px;
  border: 1px solid rgba(12, 89, 253, 0.08);
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(12, 89, 253, 0.09);
}

.bn-reason-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #0c59fd;
  font-size: 34px;
  font-weight: 700;
  background: #eef4ff;
}

.bn-reason-card h3 {
  margin: 0 0 16px;
  color: #0c59fd;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.055em;
}

.bn-reason-card p {
  margin: 0;
  color: #111827;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
  letter-spacing: -0.04em;
}

.bn-reason-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 26px;
  border-radius: 12px;
  color: #0c59fd;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: #f0f5ff;
}

.bn-reason-card span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border: 2px solid #0c59fd;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}

.bn-reason__result {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  align-items: center;
  margin-top: 28px;
  padding: 24px 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(12, 89, 253, 0.08);
}

.bn-reason-result__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 80px;
}

.bn-reason-result__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #0c59fd;
  font-size: 38px;
  background: #eaf2ff;
}

.bn-reason-result__item strong {
  display: block;
  color: #0c59fd;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.bn-reason-result__item strong em {
  font-size: 0.46em;
  font-style: normal;
}

.bn-reason-result__item p {
  margin: 8px 0 0;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.bn-reason-result__ghost {
  color: rgba(12, 89, 253, 0.12);
  font-size: 70px;
  text-align: center;
}

.bn-reason__bottom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 54px;
  margin-top: 30px;
}

.bn-reason__bottom p {
  position: relative;
  margin: 0;
  color: #111827;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.bn-reason__bottom p::before,
.bn-reason__bottom p::after {
  position: absolute;
  top: -4px;
  color: #0c59fd;
  font-size: 30px;
  font-weight: 900;
}

.bn-reason__bottom p::before {
  content: "“";
  left: -44px;
}

.bn-reason__bottom p::after {
  content: "”";
  right: -44px;
}

.bn-reason__bottom p strong {
  position: relative;
  color: #0c59fd;
  font-weight: 900;
}

.bn-reason__bottom p strong::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -8px;
  height: 12px;
  border-bottom: 3px solid #0c59fd;
  border-radius: 50%;
}

.bn-reason__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #0c59fd 0%, #2e7bff 100%);
  box-shadow: 0 20px 44px rgba(12, 89, 253, 0.28);
}

.bn-reason__badge span {
  font-size: 30px;
  line-height: 1;
}

.bn-reason__badge strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.bn-reason__badge em {
  margin-top: 8px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}


.result-section {
  position: relative;
  padding: 100px 20px;
  background-image: 
  linear-gradient(rgba(2, 9, 26, 0.85), rgba(2, 9, 26, 0.308)),
  url("/assets/images/bg-02.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

/* 트로피 느낌 배경 */
.result-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  opacity: 0.4;
}

/* 컨테이너 */
.result-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 제목 */
.result-head h2 {
  font-size: 4rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color:#fff;
  text-align: center;
}
.result-section h3 {
  color:#fff;
}

.result-head strong {
  color: #3b82f6;
}

.result-head p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 60px;
  text-align: center;
  font-size: 1.3rem;
}

/* 카드 영역 */
.result-cards {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}

/* 카드 */
.result-card {
  flex: 1;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
  text-align: center;
}

/* 호버 */
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(59,130,246,0.2);
}

/* 아이콘 */
.result-card .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: #3b82f6;
  background: rgba(0, 75, 255, 0.08);
  box-shadow:
    0 0 8px rgba(0, 102, 255, 0.9),
    0 0 22px rgba(0, 102, 255, 0.65),
    0 0 46px rgba(0, 102, 255, 0.35),
    inset 0 0 18px rgba(0, 102, 255, 0.28);

}

.result-card .icon img {
  width:50%;
}

/* 카드 텍스트 */
.result-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.result-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* KPI */
.result-kpi {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 20px 20px 60px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.result-kpi span {
  font-size: 2rem;
  color: #ccc;
}

.result-kpi strong {
  color:var(--primary-light01);
  font-size: 3rem;
  letter-spacing: -3px;
}

/* KPI 아이콘 */
.kpi-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(59,130,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 8px rgba(0, 102, 255, 0.9), 0 0 22px rgba(0, 102, 255, 0.65), 0 0 46px rgba(0, 102, 255, 0.35), inset 0 0 18px rgba(0, 102, 255, 0.28);
}

.kpi-icon img {
  width:60%;
}

/* KPI 텍스트 */
.kpi-text strong {
  font-size: 36px;
  font-weight: 800;
  color: #3b82f6;
}

.kpi-text span {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}

/* 반응형 */
@media (max-width: 768px) {
 
}

/* =========================================
   SECTION-PARTNER (협업 소개)
   ========================================= */
.section-partner {
  position: relative;
  overflow: hidden;
  padding: 110px 0 130px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.94) 42%,
      rgba(255,255,255,0.68) 64%,
      rgba(255,255,255,0.22) 100%
    ),
    url("/assets/images/bg-03.jpg") no-repeat right center / cover;
}

.section-partner .container {
  position: relative;
  z-index: 1;
}

.partner-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  align-items: center;
  min-height: 560px;
}

.partner-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.section-partner .section-badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #0c59fd;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: rgba(12, 89, 253, 0.08);
}

.partner-content h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.065em;
}

.partner-desc {
  margin: 22px 0 26px;
  color: #4b5563;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.section-partner .partner-point .txt {
    margin-left: 20px;
}


.partner-points {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 42px;
}

.partner-point {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  align-items: flex-start;
}

.partner-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c59fd 0%, #3b82ff 100%);
  box-shadow: 0 14px 30px rgba(12, 89, 253, 0.28);
}

.partner-point-icon img {
  width: 61px;
  height: auto;
  filter: brightness(0) invert(1);
}

.partner-point h4 {
  margin: 0 0 12px;
  color: #0c59fd;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.partner-point p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.04em;
}

.partner-visual {
  display: none;
}

.partner-quote {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;

  margin: 30px 0;
  padding: 28px 38px;
  border: 1px solid rgba(12, 89, 253, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(12, 89, 253, 0.1);
  backdrop-filter: blur(12px);
  background-image: url(/assets/images/icon-quote.png);
    background-repeat: no-repeat;
    background-position: 99% 10%;
}

.partner-quote-left {
  min-width:45%;
  display: flex;
  align-items: center;
  gap: 22px;
}

.partner-quote-right {
    flex: 1;
}

.partner-quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(12, 89, 253, 0.08);
  border: 1px solid rgba(12, 89, 253, 0.18);
}

.partner-quote img {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.partner-quote-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  transform: translateY(5px);
  margin: 20% auto;
}

.partner-quote strong {
  color: #0f172a;
  font-size: 28px;
  align-items: center;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.partner-quote strong em {
  color: #0c59fd;
  font-style: normal;
}

.partner-quote p {
  position: relative;
  margin: 0;
  padding-left: 34px;

  color: #475569;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: -0.03em;
  text-align: left;
}

.partner-quote p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;

  width: 1px;
  height: 48px;
  background: rgba(12, 89, 253, 0.55);
}

.partner-quote-mark {
  margin-left: auto;
  color: rgba(12, 89, 253, 0.18);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
}

.partner-quote span {
  display: block;
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}


/* =========================================
   SECTION-REVIEW (수강생 후기)
   ========================================= */
.section-review {
  background: var(--bg-soft);
  padding: 100px 0;
}

.section-review .container {
  width:100%;
  max-width: 100%;
  padding:0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars span {
  color: var(--star);
  font-size: 1rem;
}

.review-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 3px 9px;
  border-radius: 6px;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  word-break: keep-all;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author-info .author-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.review-author-info .author-role {
  font-size: 0.8125rem;
  color: var(--text-sub);
  margin-top: 2px;
}

/**/
.section-review {
  padding: 120px 0;
  background: #f4f8ff;
  overflow: hidden;
}

.review-slider {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 28px;
  width: max-content;
  will-change: transform;
  animation: reviewMarquee 45s linear infinite;
}

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


@keyframes reviewMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  flex: 0 0 360px;
  padding: 34px 32px 32px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.review-stars {
  margin-bottom: 10px;
  color: #ff9900;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-tag {
   display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;
  min-width: auto;
  align-self: flex-start;

  margin-bottom: 18px;
  padding: 6px 12px;

  border-radius: 999px;
  background: rgba(12, 89, 253, 0.08);

  color: #0c59fd;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.review-text {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.03em;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.review-author img {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  color: #07142f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.review-author span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}

/* =========================================
   SECTION-PROCESS (교육 진행 방식)
   ========================================= */
.section-process {
  background: var(--bg-soft);
  padding: 100px 0;
}

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

.process-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.process-card:hover {
  transform: translateY(-4px);
}

.process-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.process-card-body {
  padding: 20px 22px 24px;
}

.process-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.process-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  word-break: keep-all;
}

.process-card-body p {
  font-size: 0.875rem;
  line-height: 1.6;
  word-break: keep-all;
}

.process-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}

.process-checklist li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: var(--text-sub);
}

.process-checklist li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* =========================================
   SECTION-TARGET (수강 대상)
   ========================================= */
.section-target {
  background: var(--bg);
  padding: 100px 0;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.target-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.target-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.target-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.target-icon img {
  width: 28px;
  height: 28px;
}

.target-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.target-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  word-break: keep-all;
}

.target-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  word-break: keep-all;
}

.target-note {
  margin-top: 40px;
  padding: 20px 28px;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.7;
  word-break: keep-all;
}

/* =========================================
   수강대상
   ========================================= */
.section-target {
  padding: 120px 0;
  background: #fff;
}

.section-target .text-container {
  margin-bottom: 56px;
  text-align: center;
}

.section-target .section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(12, 89, 253, 0.08);
  color: #0c59fd;
  font-size: 15px;
  font-weight: 700;
}

.section-target h2 {
  margin: 0;
  color: #07142f;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.section-target .text-container p {
  margin: 20px 0 0;
  color: #475569;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.target-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 278px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.target-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f3f7ff 0%, #edf3ff 100%);
}

.target-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.target-card h3 {
  margin: 0 0 14px;
  color: #07142f;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.target-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3579ff 0%, #0c59fd 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(12, 89, 253, 0.22);
}

.target-card p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.target-notice {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 1000px;
  margin: 36px auto 0;
  padding: 24px 30px;
  border-left: 4px solid #0c59fd;
  border-radius: 0 12px 12px 0;
  background: #f8fbff;
}

.target-notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border: 2px solid #0c59fd;
  border-radius: 50%;
  color: #0c59fd;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.target-notice p {
  margin: 0;
  color: #334155;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.03em;
}

.target-notice strong {
  color: #07142f;
  font-weight: 900;
}

/* =========================================
   SECTION-FAQ
   ========================================= */
.section-faq {
  background: var(--bg-soft);
  padding: 100px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: inherit;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.faq-q-mark {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-question-text span {
  font-size: 1rem;
  font-weight: 600;
  word-break: keep-all;
  line-height: 1.5;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-sub);
  border-radius: 2px;
  transition: all 0.25s;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
  background: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-answer-inner {
  padding: 0 28px 24px 70px;
  font-size: 0.9375rem;
  color: var(--text-sub);
  line-height: 1.75;
  word-break: keep-all;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* =========================================
   SECTION-CTA (마지막 상담 섹션)
   ========================================= */
.section-cta {
  background: var(--primary-light);
  padding: 100px 0;
  overflow: hidden;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: end;
}

.cta-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.cta-content h2 {
  margin-bottom: 12px;
  word-break: keep-all;
}

.cta-content .cta-desc {
  font-size: 1rem;
  color: var(--text-sub);
  margin-bottom: 36px;
  word-break: keep-all;
  line-height: 1.7;
}

.cta-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(13, 88, 252, 0.14);
}

.cta-form .form-row {
  margin-bottom: 14px;
}

.cta-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.cta-form label .required {
  color: var(--primary);
  margin-left: 2px;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--formgray);
  border-radius: 10px;
  font-size: 1.2rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
  color:#000;
}

.cta-form input:focus,
.cta-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.cta-form input::placeholder {
  color: var(--text-sub);
  opacity: 0.7;
}

.form-group input {
    width: 100%;
    height: 56px;
    position: relative;
    padding: 0 16px;
    background: transparent;
    border: 2px solid rgba(12, 48, 255, 0.6);
    color: #000;
    border-radius: 10px;
    font-size: 1.2rem;
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1px solid var(--line);
}

.form-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
  padding: 0;
  border: none;
  box-shadow: none;
}

.form-agree label {
  font-size: 1rem;
  color: var(--text-sub);
  font-weight: 400;
  margin: 0;
  cursor: pointer;
  line-height: 1.5;
  word-break: keep-all;
}

.form-agree label a {
  color: var(--primary);
  text-decoration: underline;
}

.cta-form .btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}

.cta-form .btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.cta-phone img {
  width: 20px;
  height: 20px;
}

.cta-phone a {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.cta-phone span {
  font-size: 1.3rem;
  color: var(--text-sub);
}

.cta-char {
  position: relative;
  text-align: center;
}

.cta-char img {
  width: 100%;
  margin: 0 auto;
}

.cta-bubble {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-60%);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(15, 35, 75, 0.1);
}

.cta-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--line);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--navy);
  /*padding: 60px 0 40px;*/
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand .logo img {
  height: 32px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 360px;
  word-break: keep-all;
}

.footer-info {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.footer-info a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 1220px) {
.section-hero {
    background-position: center;
}
}

@media (max-width: 1200px) {
  .container-form .form-box {
    display: none;
  }

 .section-expert .container {
    background: none;
 }

   .hero-btns,
  .hero-stats {
    justify-content: center;
  }

.hero-fixed-btn.is-fixed {
    position: fixed;
    left: 50%;
    bottom: 16px;

    width: calc(100% - 32px);
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
    border-radius: 16px;

    transform: translate3d(-50%, 0, 0);
    opacity: 1;

    animation: none !important;
    will-change: transform, opacity;

    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease;
  }

   .hero-fixed-btn.is-fixed.is-entering {
    transform: translate3d(0, 120%, 0);
    opacity: 0;
  }

.hero-fixed-btn.is-fixed.is-hidden {
    transform: translate3d(0, 140%, 0) !important;
    opacity: 0 !important;
    pointer-events: none;
    
  }
}

@keyframes mobileHeroBtnShow {
  from {
    opacity: 0;
    transform: translateX(0) translateY(120%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }


}

@media (max-width: 1024px) {
  .reason-content {
    grid-template-columns: 1fr;
  }

  .reason-character {
    order: 2;
    min-height: auto;
  }

  .reason-character img {
    width: 210px;
    margin-top: 80px;
  }

  .reason-bubble {
    left: 50%;
    transform: translateX(-140px) rotate(-7deg);
  }

  .reason-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
  }

  .reason-stat:not(:last-child)::after {
    display: none;
  }

  .reason-bottom {
    justify-content: center;
    padding-right: 0;
  }

  .bn-reason__body {
    grid-template-columns: 1fr;
  }

  .bn-reason__mascot {
    display: none;
  }

  .bn-reason__result {
    grid-template-columns: repeat(2, 1fr);
  }

  .bn-reason-result__ghost {
    display: none;
  }

  .bn-reason__bottom {
    gap: 32px;
  }

  .section-partner {
    padding: 90px 0 100px;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.9) 100%
      ),
      url("/assets/images/partner-handshake.webp") no-repeat center / cover;
  }

  .partner-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .partner-content {
    max-width: 760px;
  }

  .partner-quote {
    position: relative;
    bottom: auto;
    margin-top: 48px;
  }

   .benefit-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }

  .benefit-banner {
    flex-wrap: wrap;
    padding-right: 180px;
  }

  .benefit-chip-list {
    margin-left: 84px;
  }

}

@media (max-width: 900px) {
    .section-hero {
        background-position: center 80%;
}
}
@media (max-width: 768px) {
  .bn-reason {
    padding: 72px 18px 64px;
  }

  .bn-reason__title {
    font-size: 38px;
  }

  .bn-reason__desc {
    font-size: 17px;
  }

  .bn-reason__cards {
    grid-template-columns: 1fr;
  }

  .bn-reason-card {
    padding: 30px 22px 24px;
  }

  .bn-reason__result {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .bn-reason-result__item + .bn-reason-result__item {
    border-left: 0;
    border-top: 1px solid rgba(12, 89, 253, 0.16);
  }

  .bn-reason__bottom {
    flex-direction: column;
    gap: 26px;
  }

  .bn-reason__bottom p {
    font-size: 22px;
    text-align: center;
  }

  .bn-reason__bottom p::before,
  .bn-reason__bottom p::after {
    display: none;
  }

  .bn-reason__badge {
    width: 136px;
    height: 136px;
  }

  .bn-reason__badge strong {
    font-size: 26px;
  }

   .result-cards {
    flex-direction: column;
  }

  .result-head h2 {
    font-size: 32px;
  }

  .section-partner {
    padding: 72px 0;
  }

  .partner-content h2 {
    font-size: 34px;
  }

  .partner-desc {
    font-size: 17px;
  }

  .partner-point {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .partner-point-icon {
    width: 58px;
    height: 58px;
  }

  .partner-point-icon img {
    width: 28px;
    height: 28px;
  }

  .partner-point h4 {
    font-size: 21px;
  }

  .partner-point p {
    font-size: 15px;
  }

 .partner-quote {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 22px;
  }

  .partner-quote-left {
    gap: 14px;
  }

  .partner-quote-icon {
    width: 52px;
    height: 52px;
  }

  .partner-quote-icon img {
    width: 28px;
    height: 28px;
  }

  .partner-quote strong {
    font-size: 21px;
    white-space: normal;
  }

  .partner-quote p {
    padding-left: 0;
    font-size: 14px;
  }

  .partner-quote p::before,
  .partner-quote-mark {
    display: none;
  }

  .partner-quote img {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .partner-quote span {
    font-size: 15px;
  }
  .benefit-card-list {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding: 48px 24px 32px;
  }

  .benefit-banner {
    display: block;
    padding: 28px 24px 140px;
    text-align: center;
  }

  .benefit-banner-icon {
    margin: 0 auto 18px;
  }

  .benefit-banner-text strong {
    font-size: 21px;
  }

  .benefit-chip-list {
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0 0;
  }

  .benefit-character {
    right: 50%;
    transform: translateX(50%);
    width: 120px;
  }

  
}




/* =========================================
   RESPONSIVE
   ========================================= */

/* ---- 태블릿 이하 (≤1024px) ---- */
@media (max-width: 1024px) {

  /* GNB 숨기고 햄버거 표시 */
  .site-header .gnb,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* 레이아웃 */
  .section-hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-hero .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual img {
    max-width: 480px;
    margin: 0 auto;
  }

  .solution-inner {
    grid-template-columns: 1fr;
  }

  .solution-char {
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
  }

  .solution-char img {
    max-width: 140px;
  }

  .expert-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .partner-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-char {
    display: none;
  }

  .concern-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .institute-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: column;
  }
}

/* ---- 모바일 (≤1000px) ---- */
@media (max-width: 1000px) {
  .solution-body {
    display: block;
  }

}

@media (max-width: 780px) {
   .section-hero .content-container {
     display: flex;
     justify-content: flex-end;
   }
  .solution-cards-wrap {
    gap:0;
  }
  .solution-bottom-row {
    display: block;
  }
  .solution-top-row {
    display: block;
  }
  .solution-card {
    margin-bottom: 20px;
  }
  .reason-section {
    padding: 78px 18px 70px;
  }

  .reason-title {
    font-size: 34px;
  }

  .reason-title-line {
    margin-bottom: 42px;
  }

  .reason-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 28px 12px;
  }

  .reason-stat {
    min-height: auto;
    padding: 22px 12px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(12, 89, 253, 0.08);
  }

  .reason-icon {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }

  .reason-stat strong {
    font-size: 36px;
  }

  .reason-stat p {
    font-size: 15px;
  }

  .reason-bottom {
    flex-direction: column;
    gap: 28px;
    margin-top: 42px;
  }

  .reason-bottom p {
    font-size: 19px;
  }

  .reason-badge {
    width: 142px;
    height: 142px;
  }

  /*-===========수강생 요건==========*/
  .section-target {
    padding: 80px 0;
  }

  .section-target .text-container {
    margin-bottom: 36px;
  }

  .section-target h2 {
    font-size: 34px;
  }

  .section-target .text-container p {
    font-size: 16px;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .target-card {
    min-height: auto;
    padding: 30px 22px;
  }

  .target-icon {
    width: 76px;
    height: 76px;
  }

  .target-icon img {
    width: 40px;
    height: 40px;
  }

  .target-card h3 {
    font-size: 22px;
  }

  .target-card span {
    font-size: 15px;
  }

  .target-notice {
    padding: 20px;
  }

  .target-notice p {
    font-size: 15px;
  }

}

/* ---- 모바일 (≤640px) ---- */
@media (max-width: 640px) {

  .section-why,
  .section-concern,
  .section-solution,
  .section-expert,
  .section-institute,
  .section-courses,
  .section-reason,
  .section-result,
  .section-partner,
  .section-review,
  .section-process,
  .section-target,
  .section-faq,
  .section-cta {
    padding: 72px 0;
  }

  .section-hero .text-container {
    width:80%;
    padding: 20px 0 150px;
  }

  .section-hero .content-container img {
    width: 80%;
  }

 /* .section-hero .text-container .desktop {
    display: none;
  }
  .section-hero .text-container .mobile {
    display: block;
  }*/
  .concern-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .institute-grid {
    grid-template-columns: 1fr;
  }

  .target-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .reason-badges {
    gap: 12px;
  }

  .reason-badge-item {
    min-width: 130px;
    padding: 20px;
  }

  .expert-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expert-award {
    position: static;
    margin-top: 16px;
  }

  .hero-time-card {
    flex-direction: column;
    gap: 12px;
  }

  .cta-form {
    padding: 24px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .faq-answer-inner {
    padding-left: 28px;
  }

  .cta-phone {
    display: block;
  }
}

@media (max-width: 480px) {
  .reason-stats {
    grid-template-columns: 1fr;
  }

  .reason-character img {
    width: 180px;
  }

  .reason-bubble {
    left: 50%;
    padding: 16px 18px;
    font-size: 15px;
    transform: translateX(-120px) rotate(-7deg);
  }
  .bn-reason__title {
    font-size: 32px;
  }

  .bn-reason-card h3 {
    font-size: 23px;
  }

  .bn-reason-result__item {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================================
   FINAL OVERRIDE - RESPONSIVE / CTA / REVIEW / LAYOUT FIX
   2026-05-06
   아래 영역은 기존 스타일 충돌을 정리하기 위한 최종 오버라이드입니다.
   ========================================================= */

/* ---------- Global Safety ---------- */
html {
  scroll-behavior: smooth;
}

body {
  word-break: keep-all;
  overflow-wrap: break-word;
}

img,
video {
  max-width: 100%;
}

section {
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* ---------- Button inner glow animation ---------- */
.header-cta .btn-primary,
.container-form .btnSubmit.btn-primary,
.container-form button.btn-primary,
.container-form button[type="submit"].btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  background: linear-gradient(135deg, #0c59fd 0%, #0047e8 100%);
  box-shadow: 0 12px 28px rgba(12, 89, 253, 0.28);
}

.header-cta .btn-primary::before,
.container-form .btnSubmit.btn-primary::before,
.container-form button.btn-primary::before,
.container-form button[type="submit"].btn-primary::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 58deg,
    rgba(255, 255, 255, 0.98) 88deg,
    #63f7ff 118deg,
    rgba(255, 255, 255, 0.95) 145deg,
    transparent 180deg,
    transparent 360deg
  );
  animation: btnInnerGlowRotate 2.5s linear infinite;
}

.header-cta .btn-primary::after,
.container-form .btnSubmit.btn-primary::after,
.container-form button.btn-primary::after,
.container-form button[type="submit"].btn-primary::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border-radius: calc(10px - 2px);
  background: linear-gradient(135deg, #0c59fd 0%, #0047e8 100%);
}

.header-cta .btn-primary:hover,
.container-form .btnSubmit.btn-primary:hover,
.container-form button.btn-primary:hover,
.container-form button[type="submit"].btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(12, 89, 253, 0.38), 0 0 18px rgba(77, 252, 255, 0.35);
}

@keyframes btnInnerGlowRotate {
  100% {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta .btn-primary::before,
  .container-form .btnSubmit.btn-primary::before,
  .container-form button.btn-primary::before,
  .container-form button[type="submit"].btn-primary::before,
  .review-track {
    animation: none !important;
  }
}

/* ---------- Partner quote fix ---------- */
.partner-quote {
  min-width: 0;
}

.partner-quote-icon {
  flex: 0 0 auto;
}

.partner-quote-icon img {
  display: block;
  margin: 0 auto;
  transform: translateY(3px);
}

.partner-quote span {
  min-width: 0;
  white-space: normal;
  text-align: left;
  font-size: 1.7rem;
}

.partner-quote span em{
  font-style: normal;
  color:var(--primary);
}

/* ---------- Expert nested list fix ---------- */
.expert-col > ul > li {
  align-items: flex-start;
}

.expert-col li ul {
  display: block;
  width: 100%;
  margin: 8px 0 0;
  padding-left: 0;
}

.expert-col li ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
  padding-left: 0;
}

/* ---------- Review slider / profile fix ---------- */
.review-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 56px;
}

.review-track {
  display: flex;
  gap: 28px;
  width: max-content;
  will-change: transform;
  animation: reviewMarquee 45s linear infinite;
}

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

.review-card {
  flex: 0 0 360px;
  align-items: flex-start;
}

.review-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: auto;
  min-width: 0;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 89, 253, 0.08);
  color: #0c59fd;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.review-author img {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

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

/* ---------- Fixed form layout fix ---------- */
.container-form .form-box {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  width: min(90%, 1280px);
  margin: 0 auto;
}

.container-form form {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) minmax(280px, 1.4fr) minmax(220px, 1fr);
  gap: 12px;
  align-items: center;
  margin: 26px auto 0;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(64, 242, 223, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.container-form input,
.container-form button {
  min-width: 0;
}

.container-form.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 200ms ease, transform 200ms ease;
}

/* =========================================================
   RESPONSIVE FINAL MEDIA QUERIES
   1200 / 1024 / 768 / 480
   ========================================================= */

@media (max-width: 1200px) {
  h2 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
  }

  .grid-4,
  .benefit-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-expert .container {
    background-size: 360px auto;
  }

  .expert-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .partner-quote {
    gap: 24px;
  }

  .partner-quote strong {
    font-size: 24px;
  }

  .review-card {
    flex-basis: 340px;
  }
}

@media (max-width: 1024px) {
  .site-header .container {
    height: 64px;
  }

  .site-header .gnb {
    gap: 20px;
  }

  .site-header .btn {
    height: 36px;
    padding: 0 18px;
    font-size: 0.875rem;
  }

  .section-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .concern-grid,
  .institute-grid,
  .result-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .institute-grid {
    width: 100%;
  }

  .solution-body {
    grid-template-columns: 1fr;
  }

  .solution-char-wrap {
    display: none;
  }

  .solution-top-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-bottom-row {
    grid-template-columns: 1fr;
  }

  .benefit-banner {
    flex-wrap: wrap;
    padding: 30px;
  }

  .benefit-chip-list {
    width: 100%;
    margin-left: 84px;
  }

  .partner-quote {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-quote p {
    padding-left: 0;
  }

  .partner-quote p::before {
    display: none;
  }

  .section-expert .expert-inner .cha img {
    margin:0 auto;
  }
}

@media (max-width: 768px) {

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section-why,
  .section-concern,
  .section-solution,
  .section-expert,
  .section-institute,
  .section-courses,
  .section-reason,
  .result-section,
  .section-partner,
  .section-review,
  .section-process,
  .section-target,
  .section-faq,
  .section-cta {
    padding: 72px 0;
  }

  h2 {
    font-size: 2.125rem;
    line-height: 1.25;
  }

  h3 {
    font-size: 1.125rem;
  }

  .site-header .gnb,
  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav.open {
    display: flex;
  }

  .site-header .logo img {
    max-width: 190px;
  }

  .section-hero {
        background-repeat: no-repeat;
  }

  .hero-time-card {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stats {
    gap: 18px;
  }

  .partner-logos {
    flex-direction: column;
    gap: 24px;
  }

  .partner-logo-item img {
    height: auto;
    max-width: 220px;
  }

  .concern-grid,
  .solution-top-row,
  .benefit-card-list,
  .expert-cols,
  .institute-grid,
  .result-cards,
  .grid-4,
  .target-grid,
  .process-grid,
  .review-grid,
  .courses-grid {
    grid-template-columns: 1fr;
  }

  .concern-card,
  .why-card,
  .solution-card,
  .benefit-card,
  .institute-card,
  .result-card,
  .target-card {
    padding: 28px 22px;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-img {
    width: 96px;
    height: 96px;
  }

  .benefit-img img {
    max-width: 68px;
    max-height: 68px;
  }

  .benefit-banner {
    display: block;
    padding: 28px 22px;
    text-align: center;
  }

  .benefit-banner-icon {
    margin: 0 auto 18px;
  }

  .benefit-banner-text strong {
    font-size: 20px;
  }

  .benefit-chip-list {
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0 0;
  }

  .benefit-character,
  .solution-char-small {
    display: none;
  }

  .section-expert .container {
    background: none;
  }

  .expert-award {
    flex-direction: column;
    margin-top: 32px;
  }

  .expert-award::before,
  .expert-award::after {
    display: none;
  }

  .expert-award .award-text {
    font-size: 2rem;
  }

  .partner-point {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .partner-point-icon {
    width: 64px;
    height: 64px;
  }

  .partner-point-icon img {
    width: 38px;
  }

  .partner-quote {
    padding: 24px 22px;
  }

  .partner-quote-left {
    gap: 14px;
  }

  .partner-quote-icon {
    width: 54px;
    height: 54px;
  }

  .partner-quote-icon img {
    width: 28px;
    height: 28px;
    transform: translateY(3px);
  }

  .partner-quote strong {
    font-size: 21px;
  }

  .partner-quote p {
    font-size: 14px;
  }

  .review-slider {
    margin-top: 36px;
  }

  .review-card {
    flex-basis: min(82vw, 340px);
    padding: 28px 24px;
  }

  .review-text {
    min-height: auto;
    font-size: 15px;
  }

  .review-author img {
    width: 52px;
    height: 52px;
  }

  .result-head h2 {
    font-size: 2.3rem;
  }

  .result-kpi {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
  }

  .container-form .form-box {
    width: calc(100% - 24px);
    max-width: none;
  }

  .container-form form {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
    margin-top: 0;
    border-radius: 16px;
  }

  .container-form input[type="text"],
  .container-form input[type="tel"] {
    width: 100%;
    min-width: 0;
  }

  .container-form .form-check,
  .container-form label {
    grid-column: 1 / -1;
  }

  .container-form .btnSubmit,
  .container-form button[type="submit"] {
    grid-column: 1 / -1;
    width: 100%;
    height: 52px;
  }

  /*==========================모달팝업관련========================*/
  .course-guide-btn-wrap{
    margin:24px 0;
  }

  .course-guide-btn{
    width:100%;
    padding:16px 18px;
    border-radius:16px;
  }

  .course-guide-btn span{
    font-size:16px;
  }

  .course-guide-btn small{
    font-size:13px;
  }

  .course-guide-modal__panel{
    left:0;
    right:0;
    top:auto;
    bottom:0;
    transform:translateY(100%);
    width:100%;
    max-height:88vh;
    border-radius:24px 24px 0 0;
    padding:28px 18px 24px;
    overflow:visible;
  }

  .course-guide-modal.is-active .course-guide-modal__panel{
    transform:translateY(0);
  }

  .course-guide-modal__header h2{
    font-size:22px;
  }

  .course-guide-modal__header p{
    font-size:14px;
  }

  .course-guide-modal__close{
    top:-20px;
    right:18px;
    width:48px;
    height:48px;
  }

   .course-guide-modal__body{
    max-height:calc(88vh - 120px);
    overflow-y:auto;
   }

    .course-guide-modal__header{
    padding-right:54px;
  }

   .course-guide-btn{
    width:100%;
    padding:16px 18px;
    border-radius:16px;
  }

  .course-guide-btn span{
    font-size:16px;
  }

  .course-guide-btn small{
    font-size:12px;
  }

}

@media (max-width: 543px) {
  .section-hero .hero-desc {
    display: none;
  }
  .hero-btns {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {

  .container {
    width: calc(100% - 24px);
  }

  h2 {
    font-size: 1.9rem;
  }

  .site-header .logo img {
    max-width: 160px;
  }

  .hero-btns .btn {
    width: 50%;
  }

  .hero-fixed-btn.is-fixed {
    width:80%;
  }

  .section-hero h1 br {
    display: none;
  }

  .reason-badges {
    flex-direction: column;
  }

  .course-card .card-img img {
    height: 140px;
  }

  .container-form form {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: 86vw;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  .benefit-card p,
  .target-card p,
  .partner-point p {
    font-size: 15px;
  }
}
