/* ===== ?고듃 (font ?대뜑) ===== */
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-4Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-5Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-6SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-7Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== 湲곕낯 由ъ뀑 & 蹂??(?쇱씠???? ===== */
:root {
  --color-primary: #00C853;
  --color-primary-dark: #00A843;
  --color-bg: #ffffff;
  --color-bg-sub: #f8f9fa;
  --color-bg-card: #f1f3f5;
  --color-bg-gradient-start: #f8fafb;
  --color-bg-gradient-end: #eef4f8;
  --color-text: #212529;
  --color-text-muted: #6c757d;
  --color-border: #dee2e6;
  --font-main: 'Paperlogy', -apple-system, BlinkMacSystemFont, sans-serif;
  --wrap-padding: 1.25rem;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
}

/* ===== ?ㅻ뜑 (濡쒓퀬 ?쇱そ / PC: ??ぉ ?섏뿴 以묒븰 履? 紐⑤컮?? 硫붾돱 踰꾪듉) ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--wrap-padding);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 58px;
  width: auto;
}

/* PC: ?ㅻ퉬 ??ぉ ?섏뿴 (紐⑤컮?쇱뿉???④?) */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.header__nav-list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

@media (min-width: 992px) {
  .header__nav-list a {
    font-size: 1.0625rem;
    font-weight: 700;
    padding: 0.5rem 0.875rem;
  }
}

.header__nav-list a:hover {
  color: var(--color-primary);
  background: rgba(0, 200, 83, 0.08);
}

/* 紐⑤컮?? ?꾨쾭嫄?踰꾪듉 */
.header__menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.header__menu-icon {
  width: 24px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}

@media (min-width: 992px) {
  .header__inner {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 3rem;
  }
  .header__nav {
    display: flex;
    align-items: center;
  }
  .header__menu-btn {
    display: none;
  }
  .header__logo-img {
    height: 62px;
  }
}

/* ===== 紐⑤컮??硫붾돱 (?ㅻⅨ履????쇱そ ?щ씪?대뱶, ?섎떒 以묒븰 濡쒓퀬) ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  transition: pointer-events 0s 0.3s;
}

.nav-overlay.is-open,
.nav-overlay[aria-hidden="false"] {
  pointer-events: auto;
  transition: pointer-events 0s 0s;
}

.nav-overlay__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-overlay.is-open .nav-overlay__backdrop,
.nav-overlay[aria-hidden="false"] .nav-overlay__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay__inner {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-bg);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  z-index: 2;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 1rem) 1.5rem 1.5rem;
}

.nav-overlay.is-open .nav-overlay__inner,
.nav-overlay[aria-hidden="false"] .nav-overlay__inner {
  transform: translateX(0);
}

.nav-overlay__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  color: var(--color-text);
  line-height: 1;
}

.nav-overlay__list {
  flex: 1;
  font-size: 1.125rem;
}

.nav-overlay__list li {
  border-bottom: 1px solid var(--color-border);
}

.nav-overlay__list a {
  display: block;
  padding: 1rem 0;
  color: var(--color-text);
  transition: color 0.2s;
}

.nav-overlay__list a:hover {
  color: var(--color-primary);
}

.nav-overlay__footer {
  padding-top: 2rem;
  text-align: center;
}

.nav-overlay__logo {
  height: 40px;
  width: auto;
  margin: 0 auto;
}

/* ===== CTA 踰꾪듉 ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.75rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #00C853 0%, #00E676 50%, #00A843 100%);
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0, 200, 83, 0.4);
}

.btn-cta:hover {
  color: #fff;
  background: linear-gradient(135deg, #00A843 0%, #00C853 50%, #009638 100%);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
}

.btn-cta:active {
  transform: scale(0.98);
}

.btn-cta--large {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

.btn-cta--full {
  width: 100%;
}

.btn-cta--fixed {
  width: calc(100% - 2rem);
  max-width: 400px;
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}

/* 오른쪽 하단 고정: 카카오·블로그 / TOP·전화 (감싸지 않음) */
.quick-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.quick-float__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-end;
}

.quick-float__img {
  display: block;
  line-height: 0;
}

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

.quick-float__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-bg);
  background: var(--color-primary);
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
}

.quick-float__btn:hover {
  opacity: 0.9;
  color: var(--color-bg);
}

.quick-float__btn:active {
  transform: scale(0.96);
}

/* ===== ?뱀뀡 怨듯넻 (??댄? 1.5諛?媛뺤“) ===== */
.section-title {
  font-weight: 700;
  font-size: 2.0625rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  text-align: center;
}

/* ===== SECTION 1: ?덉뼱濡?===== */
.section-hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 2rem) 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-hero__bg {
  position: absolute;
  inset: 0;
  background: #e8ecf0 url('images/hero/hero-bg.webp') no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  z-index: -1;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

@media (max-width: 767px) {
  .section-hero__bg {
    background-image: url('images/hero/hero-bg-m.webp');
  }
  .section-hero {
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 10vh);
  }
  .section-hero__badge {
    font-size: 1.35rem;
    padding: 0.5rem 1.1rem;
  }
  .hero-headline-br,
  .hero-sub-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .hero-headline-br,
  .hero-sub-br {
    display: none;
  }
}

.section-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12) 0%, transparent 40%);
  pointer-events: none;
}


.section-hero__content {
  text-align: center;
  text-shadow: 0 1px 2px rgba(255,255,255,0.9);
}

.section-hero__badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  animation: badge-blink 2s ease-in-out infinite;
}

.section-hero__badge .badge__main {
  color: #000;
  font-weight: 800;
}

.section-hero__badge .badge__sub {
  color: var(--color-primary);
}

@keyframes badge-blink {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 20px rgba(0, 200, 83, 0.25);
    border-color: rgba(0, 200, 83, 0.9);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.6), 0 0 28px rgba(0, 200, 83, 0.6);
    border-color: var(--color-primary);
  }
}

.section-hero__headline {
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-hero__sub {
  color: var(--color-text);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.section-hero__content .btn-cta {
  margin-bottom: 0;
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 10px;
}

/* ===== 2?뱀뀡: 怨좊? 怨듦컧 + ?대?吏 ===== */
.section-second {
  padding: 3rem 0 4rem;
  background: #fff;
}

.section-second__title {
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-second__sub {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.section-second__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.section-second__img img,
.section-second__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.section-second__video--m {
  display: block;
}
.section-second__video--p {
  display: none;
}
@media (min-width: 768px) {
  .section-second__video--m {
    display: none;
  }
  .section-second__video--p {
    display: block;
  }
}

@media (max-width: 767px) {
  .section-second {
    padding-bottom: 0;
  }
  .section-second__sub {
    font-size: 2rem;
  }
  .second-sub-br,
  .form-title-br,
  .impact-br,
  .solution-desc-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .form-title-br,
  .impact-br,
  .solution-desc-br {
    display: none;
  }
  .second-sub-br {
    display: none;
  }
  .section-second {
    padding-bottom: 0;
  }
  .section-second__title {
    font-size: 2.5rem;
  }
  .section-second__sub {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-second__title {
    font-size: 3rem;
  }
  .section-second__sub {
    font-size: 2.75rem;
  }
}

/* ===== 3?뱀뀡: ?닿껐 ?쒖떆 ===== */
.section-solution {
  padding: 3rem 0 4rem;
  background: var(--color-bg-sub);
}

.section-solution__title {
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-solution__desc {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.85;
  text-align: center;
  color: var(--color-text);
  max-width: 36em;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .section-solution__title {
    font-size: 2.5rem;
  }
  .section-solution__desc {
    font-size: 1.375rem;
    padding: 1.75rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section-solution__title {
    font-size: 3rem;
  }
  .section-solution__desc {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 2rem 2.5rem;
  }
}

/* ===== 4?뱀뀡: 臾대즺?밴컯 珥덈떒湲?鍮꾨? ?섏뾽 ===== */
.section-curriculum {
  padding: 3rem 0 4rem;
  background: #fff;
}

.section-curriculum .wrap {
  max-width: 100%;
  padding-left: var(--wrap-padding);
  padding-right: var(--wrap-padding);
}

.section-curriculum__title {
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.curriculum-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.curriculum-card {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--color-bg-sub);
  border: 2px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: 16px;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s ease;
}

.curriculum-card:hover,
.curriculum-card.curriculum-card--active {
  border-color: var(--color-primary);
  border-left-width: 4px;
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.2);
  transform: scale(1.03);
}

.curriculum-card__trust {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.curriculum-card:hover .curriculum-card__trust,
.curriculum-card.curriculum-card--active .curriculum-card__trust {
  opacity: 1;
}

.curriculum-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.curriculum-card__img {
  width: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
}

.curriculum-card__img img {
  width: 100%;
  height: auto;
  min-height: 140px;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

.curriculum-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
}

.curriculum-card__desc {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

@media (min-width: 768px) {
  .section-curriculum .wrap {
    max-width: 1400px;
  }
  .section-curriculum__title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
  .curriculum-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .curriculum-card {
    padding: 1.75rem 1.5rem;
  }
  .curriculum-card__num {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .curriculum-card__img {
    min-height: 140px;
    margin-bottom: 1.25rem;
  }
  .curriculum-card__title {
    font-size: 1.0625rem;
  }
  .curriculum-card__desc {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .section-curriculum .wrap {
    max-width: 1600px;
  }
  .section-curriculum__title {
    font-size: 2.75rem;
  }
  .curriculum-card {
    padding: 2rem 1.75rem;
  }
  .curriculum-card__num {
    width: 3rem;
    height: 3rem;
    font-size: 1.625rem;
  }
  .curriculum-card__img {
    min-height: 180px;
  }
  .curriculum-card__title {
    font-size: 1.1875rem;
  }
  .curriculum-card__desc {
    font-size: 1rem;
  }
}

/* ===== 5?뱀뀡: ?몃???李몄꽍???섏씡瑜좏몴 ===== */
.section-folio {
  padding: 3rem 0 4rem;
  background: #fff;
}

.section-folio .wrap {
  max-width: 100%;
}

.section-folio__title {
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.35;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-folio__sub {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.folio-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.folio-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}

.folio-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 0.25rem;
}

.folio-slider__slide img {
  width: 100%;
  height: auto;
  min-height: 280px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .section-folio .wrap {
    max-width: 1100px;
  }
  .section-folio__title {
    font-size: 2.5rem;
  }
  .section-folio__sub {
    font-size: 1.5rem;
  }
  .folio-slider__slide {
    flex: 0 0 50%;
    width: 50%;
  }
  .folio-slider__slide img {
    min-height: 320px;
  }
}

@media (min-width: 1024px) {
  .section-folio .wrap {
    max-width: 1280px;
  }
  .section-folio__title {
    font-size: 2.75rem;
  }
  .section-folio__sub {
    font-size: 1.625rem;
  }
  .folio-slider__slide img {
    min-height: 380px;
  }
}

/* ===== 6?뱀뀡: ?ы뀒???꾨Ц媛 Q&A & ?ㅽ듃?뚰궧 ===== */
.section-seminar {
  padding: 3rem 0 4rem;
  background: var(--color-bg-sub);
}

.section-seminar__title {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.35;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-seminar__sub {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-seminar__note,
.section-seminar__note2 {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.section-seminar__note2 {
  margin-bottom: 1.5rem;
}

.seminar-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.seminar-slider__track {
  display: flex;
  transition: transform 0.5s ease;
}

.seminar-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 0.15rem;
}

.seminar-slider__slide img {
  width: 100%;
  height: auto;
  min-height: 320px;
  max-height: 75vh;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.section-seminar__impact {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin: 0;
  animation: impact-move 3s ease-in-out infinite;
  background: linear-gradient(135deg, #2196F3 0%, #42A5F5 35%, #03A9F4 70%, #29B6F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes impact-move {
  0%, 100% { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
  25% { transform: translateY(0) translateX(4px) scale(1.02); }
  50% { opacity: 1; transform: translateY(0) translateX(-4px) scale(1.02); }
  75% { transform: translateY(0) translateX(2px) scale(1.01); }
}

@media (min-width: 768px) {
  .section-seminar .wrap {
    max-width: 1200px;
  }
  .section-seminar__title {
    font-size: 2.25rem;
  }
  .section-seminar__sub {
    font-size: 1.5rem;
  }
  .section-seminar__note,
  .section-seminar__note2 {
    font-size: 1.25rem;
  }
  .seminar-slider__slide img {
    min-height: 420px;
    max-height: 80vh;
  }
  .section-seminar__impact {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .section-seminar .wrap {
    max-width: 1600px;
  }
  .section-seminar__title {
    font-size: 2.5rem;
  }
  .section-seminar__sub {
    font-size: 1.625rem;
  }
  .section-seminar__note,
  .section-seminar__note2 {
    font-size: 1.375rem;
  }
  .seminar-slider__slide img {
    min-height: 520px;
    max-height: 85vh;
  }
  .section-seminar__impact {
    font-size: 2rem;
  }
}

/* ===== ?섍컯???꾧린 (?꾨옒?믪쐞 ?먮룞 ?щ씪?대뜑) ===== */
.section-review {
  padding: 3rem 0 4rem;
  background: var(--color-bg);
}

.section-review__title {
  font-weight: 800;
  font-size: 1.75rem;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.review-slider {
  width: 100%;
  max-width: 100%;
  height: 75vh;
  min-height: 360px;
  overflow: hidden;
  border-radius: 12px;
}

.review-slider__track {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.5s ease;
}

.review-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-sub);
}

.review-slider__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 768px) {
  .section-review .wrap {
    max-width: 1200px;
  }
  .section-review__title {
    font-size: 2.25rem;
  }
  .review-slider {
    height: 78vh;
    min-height: 420px;
  }
}

@media (min-width: 1024px) {
  .section-review .wrap {
    max-width: 1400px;
  }
  .section-review__title {
    font-size: 2.5rem;
  }
  .review-slider {
    height: 82vh;
    min-height: 500px;
  }
}

/* ===== 자료집 제공 ===== */
.section-resources {
  padding: 3rem 0 4rem;
  background: var(--color-bg-sub);
}

.section-resources__title {
  font-weight: 800;
  font-size: 1.75rem;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.resources-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resources-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  border-radius: 12px;
  background: var(--color-bg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-border);
}

.resources-card__img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.resources-card__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.resources-card__body {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.resources-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .section-resources .wrap {
    max-width: 1000px;
  }
  .section-resources__title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
  .resources-cards {
    gap: 1.25rem;
  }
  .resources-card {
    padding: 1.75rem 2rem;
  }
  .resources-card__img {
    margin-bottom: 1.25rem;
  }
  .resources-card__title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .section-resources .wrap {
    max-width: 1200px;
  }
  .section-resources__title {
    font-size: 2.5rem;
  }
  .resources-card {
    padding: 2rem 2.5rem;
  }
  .resources-card__img {
    margin-bottom: 1.5rem;
  }
  .resources-card__title {
    font-size: 1.375rem;
  }
}

/* ===== 문의 폼 ===== */
.section-form {
  padding: 3rem 0 4rem;
  background: var(--color-bg-card);
}

.section-form__cta-wrap {
  max-width: 400px;
  margin: 0 auto;
}

.section-form__cta-wrap .btn-cta {
  display: block;
  text-align: center;
}

.form-apply {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.form-apply__label {
  display: block;
  margin-bottom: 1rem;
}

.form-apply__label span {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  color: var(--color-text-muted);
}

.form-apply__label input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.form-apply__label input::placeholder {
  color: var(--color-text-muted);
}

.form-apply .btn-cta {
  margin-top: 0.5rem;
}

.section-form__contact {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.section-form__contact p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.contact-link {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--color-primary);
  font-size: 0.9375rem;
}

/* 모바일: 각 섹션 텍스트 중앙 정렬 */
@media (max-width: 767px) {
  .section-hero__content {
    text-align: center;
  }
  .section-second__title,
  .section-second__sub {
    text-align: center;
  }
  .section-solution .wrap,
  .section-solution__title,
  .section-solution__desc {
    text-align: center;
  }
  .section-solution__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .section-curriculum__title,
  .section-curriculum .curriculum-card__title,
  .section-curriculum .curriculum-card__desc {
    text-align: center;
  }
  .section-folio__title,
  .section-folio__sub {
    text-align: center;
  }
  .section-seminar__title,
  .section-seminar__sub,
  .section-seminar__note,
  .section-seminar__note2,
  .section-seminar__impact {
    text-align: center;
  }
  .section-review__title {
    text-align: center;
  }
  .section-resources__title,
  .section-resources .resources-card__body,
  .section-resources .resources-card__title {
    text-align: center;
  }
  .section-form .section-title,
  .section-form .section-form__cta-wrap {
    text-align: center;
  }
}

/* ===== 스크롤 애니메이션: 타이틀·설명문 아래→위 등장 ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-hero.is-visible .reveal-up,
.section-second.is-visible .reveal-up,
.section-solution.is-visible .reveal-up,
.section-curriculum.is-visible .reveal-up,
.section-folio.is-visible .reveal-up,
.section-seminar.is-visible .reveal-up,
.section-review.is-visible .reveal-up,
.section-resources.is-visible .reveal-up,
.section-form.is-visible .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up--2 { transition-delay: 0.1s; }
.reveal-up--3 { transition-delay: 0.2s; }
.reveal-up--4 { transition-delay: 0.3s; }
.reveal-up--5 { transition-delay: 0.4s; }

/* ===== 諛섏쓳?? ?쒕툝由??댁긽 ===== */
@media (min-width: 768px) {
  :root {
    --wrap-padding: 2rem;
  }

  .section-hero__badge {
    font-size: 1.75rem;
    padding: 0.5rem 1.25rem;
    border-width: 2px;
  }

  .section-hero__headline {
    font-size: 3.25rem;
  }

  .section-hero__sub {
    font-size: 1.5rem;
  }

  .section-hero__content .btn-cta {
    font-size: 1.375rem;
    padding: 1.35rem 2.75rem;
  }

  .section-title {
    font-size: 2.625rem;
  }

  .nav-overlay__inner {
    max-width: 360px;
  }
}

@media (min-width: 1024px) {
  .wrap {
    max-width: 900px;
  }

  .section-hero {
    justify-content: flex-start;
    padding-top: calc(var(--header-height) + 20vh);
  }

  .section-hero__badge {
    font-size: 1.75rem;
  }

  .section-hero__headline {
    font-size: 4rem;
    white-space: nowrap;
  }

  .section-hero__sub {
    font-size: 1.625rem;
  }

  .section-hero__content .btn-cta {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
  }
}

