@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css');

html {
    font-size: 16px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont,
        'Apple SD Gothic Neo', 'Noto Sans KR', 'Segoe UI', sans-serif;
}

:root {
    --header-h: 120px;
}


/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 로고 */
.header__logo img {
    height: 110px;
}

/* 네비 */
.header__nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header__nav a {
    text-decoration: none;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}




/* HERO SECTION */
.hero {
    margin-top: var(--header-h);
    position: relative;
    overflow: hidden;
}

/* 배경 영역 (높이 생성) */
.hero__bg {
    position: relative;
    width: 100%;
}

/* 슬라이드 기본 */
.slide {
    animation: fade 6s infinite;
}

.s1 {
    animation-delay: 0s;
}

.s2 {
    animation-delay: 2s;
}

.s3 {
    animation-delay: 4s;
}

/* ⭐ 첫 번째만 흐름 유지 → hero 높이 생성 */
.slide.s1 {
    position: relative;
    display: block;
}

/* 나머지는 겹침 */
.slide.s2,
.slide.s3 {
    position: absolute;
    top: 0;
    left: 0;
}

/* 이미지 */
.slide img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    28% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* 텍스트 */
.hero__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    max-width: 720px;
    padding: 0 20px;

    text-align: center;
    z-index: 2;
}

/* 어두운 오버레이 (텍스트 가독성) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    pointer-events: none;
}



/* 상단 작은 문구 */
.hero__eyebrow {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* 헤드라인 */
.hero__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    color: #fff;
}

/* 서브 */
.hero__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* 버튼 영역 */
.hero__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__apply-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.hero__apply-main {
    font-size: 16px;
    font-weight: 700;
}

.hero__apply-sub {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: -0.2px;
}


.hero__benefit {
    margin: 12px 0 28px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.hero__benefit-key {
    color: #f28a2e;
}

.hero__benefit-no {
    margin-left: 3px;
    color: #fdfcfc;
}

.hero__benefit-divider {
    margin: 0 8px;
    color: #fdfcfc;
}

/* 버튼 기본 */
.btn {
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* 메인 버튼 */
.btn--primary {
    background: #222;
    color: #fff;
}

.btn--primary:hover {
    background: #000;
}

/* 보조 버튼 */
.btn--secondary {
    background: #f2f2f2;
    color: #333;
}

.btn--secondary:hover {
    background: #e6e6e6;
}



/* PROBLEM SECTION */
.problem {
    padding: 100px 20px;
    background: #ffffff;
}

.problem__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.problem__title {
    font-size: clamp(30px, 5.2vw, 52px);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111;
    margin-bottom: 32px;
}

.problem__title span {
    color: #4375a4;
}

.problem__list {
    width: fit-content;
    margin: 0 auto 30px;
    text-align: left;
}

.problem__list p {
    width: fit-content;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: #333;
    line-height: 1.7;
    margin-bottom: 8px;
    padding: 0 3px;

    background:
        linear-gradient(100deg,
            rgba(255, 189, 128, 0) 0%,
            rgba(255, 189, 128, 0.55) 12%,
            rgba(255, 189, 128, 0.45) 45%,
            rgba(255, 189, 128, 0.6) 78%,
            rgba(255, 189, 128, 0) 100%);
    background-size: 100% 9px;
    background-repeat: no-repeat;
    background-position: 0 82%;
}



.problem__lead {
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.7;
    color: #333;
    margin-bottom: 48px;
    word-break: keep-all;
}

.problem__compare {
    background: #f8f6f2;
    border-radius: 28px;
    padding: 32px 16px;
}


.problem__closing {
    margin-top: 32px;
    font-size: clamp(24px, 2.4vw, 30px);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: #111;
}

.problem__closing span {
    color: #418bfa;
}

.problem__label {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #666;
    margin-bottom: 16px;
}

.problem__quote {
    font-size: clamp(18px, 2.4vw, 24px);
    /* ↓ 폰트 줄임 */
    line-height: 1.4;
    font-weight: 600;
    /* ↓ 살짝 가볍게 */
    padding: 10px 12px;
    /* ↓ 높이 줄임 */
    border-radius: 14px;
    /* ↓ 덩어리감 줄임 */
}


.problem__quote--bad {
    position: relative;
    display: inline-block;
    background: #e1e4ee;
    color: #555;
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 600;
}

/* 말풍선 꼬리 */
.problem__quote--bad::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -10px;

    width: 0;
    height: 0;

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #e1e4ee;
}

.problem__quote--good {
    position: relative;
    display: inline-block;
    background: #418bfa;
    color: #fff;
    padding: 14px 18px;
    border-radius: 18px;
    font-weight: 600;
}

/* 말풍선 꼬리 */
.problem__quote--good::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -10px;

    width: 0;
    height: 0;

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #418bfa;
}

.problem__divider {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #474747;
    margin: 16px 0;
}

/* APPROACH SECTION */
.approach {
    padding: 100px 20px;
    background: #f9f7f3;
}

.approach__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.approach__title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
}

.approach__lead {
    font-size: clamp(20px, 2.2vw, 24px);
    line-height: 1.7;
    color: #333;
    margin-bottom: 48px;
    word-break: keep-all;
}

.approach__content p {
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 1.8;
    color: #333;
    margin-bottom: 28px;
    word-break: keep-all;
}

/* 강조 */
.accent {
    font-weight: 700;
}

.accent2 {
    font-weight: 900;
}

/* 오감놀이 */
.accent--orange {
    color: #FF8A3D;
}

/* 표현 */
.accent--blue {
    color: #3B82F6;
}

/* 자발성 */
.accent--green {
    color: #2F9E44;
}

.accent--green2 {
    color: #2F9E44;
    font-size: clamp(36px, 2.2vw, 38px);
}

/* 카드 리스트 */
.approach__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 카드 */
.approach__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    padding: 18px 18px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

/* 아이콘 */
.approach__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;

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

    font-size: 30px;
    /* 핵심 */
    line-height: 1;

    flex-shrink: 0;
}

/* 노랑 */
.approach__card:nth-child(1) .approach__icon {
    background: #FFF3C4;
}

/* 파랑 */
.approach__card:nth-child(2) .approach__icon {
    background: #DCEEFF;
}

/* 초록 */
.approach__card:nth-child(3) .approach__icon {
    background: #DFF5E1;
}

/* 텍스트 */
.approach__text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: #333;
    word-break: keep-all;
}



/* METHOD SECTION */
.method {
    padding: 100px 20px;
    background: #ffffff;
}

.method__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.method__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

/* 그리드 */
.method__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 카드 */
.method__card {
    background: #f8f6f2;
    border-radius: 22px;
    padding: 26px 22px;
    transition: all 0.25s ease;
}

.method__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* 상단 */
.method__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

/* 아이콘 */
.method__icon {
    font-size: 24px;
}

/* STEP */
.method__step {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

/* 태그 */
.method__tag {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* 텍스트 */
.method__text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    word-break: keep-all;
}

/* method에서도 동일하게 적용 */
.method .define__media {
    position: relative;
    width: 1100px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 0 20px;  
    overflow: hidden;
    border-radius: 20px;
}

.method .define__track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: defineMarquee 60s linear infinite;
}

.method .define__item {
    flex: 0 0 auto;
    width: 140px;
    border-radius: 14px;
    overflow: hidden;
}

.method .define__item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}


/* CURRICULUM SECTION */
.curriculum {
    padding: 20px 20px 10px;
    background: #f9f7f3;
}

.curriculum__inner {
    max-width: 900px;
    margin: 0 auto;
}

.curriculum__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.curriculum__text {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    /* ↓ 핵심 */
    line-height: 1.6;
    /* ↓ 살짝 압축 */
    margin-bottom: 28px;
}

.curriculum__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.curriculum__card {
    background: #fdf2eb;
    padding: 24px;
    /* ↓ 줄임 */
    margin-bottom: 56px;
    /* ↓ 카드 간 간격 */
    border-radius: 20px;

    text-align: center;

    /* 주황 포인트 */
    border: 1.5px solid #FFE3CC;

    /* 옅은 그림자 */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* 상단 (단계 + 타이틀) */
.curriculum__top {
    display: flex;
    flex-direction: column;
    /* 세로 배치 */
    align-items: center;
    gap: 4px;
    margin-bottom: 1px;
}

/* 주차 pill */
.step {
    background: #FFE3CC;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

/* 타이틀 */
.title {
    font-size: 18px;
    font-weight: 700;
    color: #fc9004;
}

/* 목표 / 표현 */
.curriculum__row {
    display: flex;
    align-items: center;
    /* ← 핵심 (수평 정렬 맞춤) */
    gap: 12px;

    width: 100%;
    /* ← 핵심 */
    margin-bottom: 4px;

}

.curriculum__box {
    background: #faf5f3;
    border-radius: 16px;
    padding: 10px 12px;
    /* ↓ 내부 여백 줄임 */
    margin-top: 4px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}



.label {
    width: 52px;
    font-weight: 700;
    font-size: 15px;

    background: #E8F1FF;
    border-radius: 999px;
    padding: 4px 8px;

    text-align: center;
}

.desc {
    flex: 1;
    text-align: left;
    font-size: 15px;
    line-height: 1.4;
    /* ← 높이 맞추기 */
}

/* 목표 (파랑) */
.curriculum__box .curriculum__row:nth-child(1) .label {
    background: #E8F1FF;
    color: #2B5FD9;
}

.curriculum__box .curriculum__row:nth-child(2) .label {
    background: #F1E8FF;
    color: #6B3FD9;
}

.review-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
  }

  .review-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }



.review-section {
    display: block;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 80px 20px;
  background: #f7f9fc;
    gap: 24px;
  }
  
  .review-card {
    flex: 0 0 320px;
    max-width: 320px;
  
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }

.review-meta {
    margin-bottom: 12px;
    font-size: 13px;
    color: #6b8cff;
    font-weight: 600;
}

.review-content {
    font-size: 15px;
    line-height: 1.75;
    color: #333;
    word-break: keep-all;
}

.review-author {
    margin-top: 16px;
    font-size: 13px;
    color: #888;
    text-align: right;
}



/* PRICE SECTION */
.price {
    padding: 40px 20px 80px;
    background: #fff;
}

.price__inner {
    max-width: 900px;
    margin: 0 auto;
}

.price__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* 카드 */
.price__card {
    background: #fff;
    border-radius: 20px;
    padding: 22px 20px;

    border: 1.5px solid #f1f1f1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* 타이틀 */
.price__title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
}

/* 한 줄 */
.price__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.price__row+.price__sub+.price__row {
    position: relative;
    padding-top: 14px;
    margin-top: 10px;
}

/* ⭐ 짧은 라인 */
.price__row+.price__sub+.price__row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    /* ← 길이 조절 핵심 */
    height: 1px;
    background: #e4e3e3;
}

.price__amount-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price__member {
    margin-top: 3px;
    color: #d94b4b;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.price__member .price__unit {
    font-size: inherit;
}

/* 뱃지 */
.price__badge {
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
}

/* 색상 */
.price__badge--blue {
    background: #E8F1FF;
    color: #2B5FD9;
}

.price__badge--orange {
    background: #FFE3CC;
    color: #FF7A00;
}

/* 가격 */
.price__amount {
    font-size: 22px;
    font-weight: 700;
}

.price__unit {
    font-size: 13px;
    /* 더 작게 */
    color: #999;
    /* 회색 */
    margin-left: 2px;
}

/* 서브텍스트 */
.price__sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
    margin-top:10px;
}


/* FAQ */
.faq {
    padding: 72px 20px 80px;
    background: #fffdf8;
}

.faq__inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq__eyebrow {
    margin: 0 0 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #78b85b;
}

.faq__title {
    margin: 0 0 32px;
    text-align: center;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 900;
    color: #222;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq__item {
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq__item summary {
    position: relative;
    padding: 22px 56px 22px 24px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    color: #2e2e2e;
    cursor: pointer;
    list-style: none;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eef8e8;
    color: #437da4;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    font-weight: 800;
}

.faq__item[open] summary::after {
    content: "−";
}

.faq__item p {
    margin: 0;
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    word-break: keep-all;
}

/* FAQ 더보기 */
.faq__list.collapsed .faq__item:nth-child(n+4) {
    display: none;
}

.faq__more {
    margin: 24px auto 0;
    display: block;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background: #8f9599;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.faq__more:hover {
    background: #437da4;
}



/* FINAL CTA */
.final-cta {
    padding: 86px 20px 96px;
    background: linear-gradient(180deg, #fffdf8 0%, #eef8e8 100%);
}


.final-cta {
    position: relative;
    overflow: hidden;
}

.final-deco {
    position: absolute;
    width: 260px;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    opacity: 0.96;
    pointer-events: none;
}

/* 좌측 */
.final-deco-left-top {
    left: 220px;
    top: 40px;
}

.final-deco-left-bottom {
    left: 420px;
    top: 260px;
}

/* 우측 */
.final-deco-right-top {
    right: 210px;
    top: 30px;
}

.final-deco-right-bottom {
    right: 390px;
    top: 260px;
}

.final-mobile-gallery {
    display: none;
}

.final-cta__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.final-cta__title {
    margin: 0;
    font-size: 42px;
    line-height: 1.34;
    font-weight: 900;
    color: #222;
    word-break: keep-all;
}

.final-cta__title span {
    color: #5fa443;
}

.final-cta__sub {
    margin: 22px 0 34px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #666;
}

.final-cta__actions {
    margin-top: 34px;

    display: flex;
    flex-direction: column;

    align-items: center;
    gap: 14px;
}

.hero__actions .btn--primary,
.final-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    padding: 17px 30px;
    border-radius: 999px;
    background: #78b85b;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(120, 184, 91, 0.32);
}

.hero__actions .btn--primary:hover,
.final-cta__btn:hover {
    background: #5fa443;
}

/* 전화 상담 버튼 */
.final-cta__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    background: #fff;
}

.final-cta__call:hover {
    background: #eff6ff;
}


.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.modal.show {
    display: block;
}

.modal-dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.modal-card {
    position: relative;
    width: min(460px, calc(100% - 28px));
    margin: 14vh auto 0;
    padding: 20px 18px 18px;
    box-sizing: border-box;

    background: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
    text-align: center;

    animation: modalUp 0.3s ease-out;
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.modal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.modal-badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff2e6;
    color: #f28a2e;
    font-size: 12px;
    font-weight: 700;
}

.modal-x {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: #f3f3f3;
    color: #555;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.modal-title {
    margin-top: 8px;
    color: #222;
    font-size: 21px;
    font-weight: 800;
}

.modal-sub {
    margin-top: 7px;
    color: #777;
    font-size: 14px;
    line-height: 1.5;
}

.modal-inputs {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.modal-input {
    width: 100%;
    padding: 14px 12px;
    box-sizing: border-box;

    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;

    font-family: inherit;
    font-size: 15px;
}

.modal-input:focus {
    border-color: #f28a2e;
}

.modal-submit {
    width: 100%;
    margin-top: 14px;
}

.modal-hint {
    margin-top: 11px;
    color: #888;
    font-size: 12px;
}


/* FOOTER */
.footer {
    padding: 48px 20px 40px;
    background: #222;
    color: #aaa;
}

.footer__inner {
    max-width: 860px;
    margin: 0 auto;
}

.footer__company p {
    display: flex;
    gap: 32px;
    margin: 0 0 4px;
    font-size: 12px;
    line-height: 1.5;
}

.footer__company span:first-child {
    width: 80px;
    flex-shrink: 0;
    margin-right: 32px;
}

.footer__company span:first-child {
    width: 80px;
    flex-shrink: 0;
    color: #888;
}

.footer__company span:last-child {
    color: #ddd;
}

.footer__links {
    margin-top: 16px;
    display: flex;
    gap: 18px;
}

.footer__links a {
    font-size: 13px;
    color: #aaa;
    text-decoration: none;
}

.footer__links a:hover {
    color: #fff;
}

.footer__copy {
    margin-top: 24px;
    font-size: 12px;
    color: #777;
}

.footer__row--inline {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
}

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

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


/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}





/* 모바일 대응 */
@media (max-width: 768px) {

    html {
        font-size: 18px;
        /* 전체 폰트 키움 */
    }

    :root {
        --header-h: 94px;
    }

    .header {
        height: var(--header-h);
    }

    .header__inner {
        padding: 12px 16px;
    }

    .header__logo img {
        height: 70px;
    }

    .header__nav a {
        font-size: 13px;
    }

    .header__nav {
        gap: 12px;
    }



    .hero {
        margin-top: var(--header-h);
    }

    .hero__inner {
        top: 52%;
        padding: 0 20px;
    }



    .hero__title {
        font-size: 34px;
        line-height: 1.35;
        letter-spacing: -0.3px;
    }

    .hero__desc {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero__eyebrow {
        font-size: 15px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        font-size: 16px;
        padding: 16px 0;
    }

    .problem {
        padding: 72px 16px;
    }

    .problem__title {
        margin-bottom: 24px;
    }

    .problem__lead {
        font-size: clamp(20px, 2.2vw, 26px);
        margin-bottom: 32px;
    }

    .problem__compare {
        padding: 24px 14px;
        border-radius: 22px;
    }

    .problem__quote {
        padding: 18px 14px;
    }


    .approach {
        padding: 72px 16px;
    }

    .approach__title {
        margin-bottom: 28px;
    }

    .approach__lead {
        font-size: clamp(14px, 2.2vw, 18px);
        margin-bottom: 32px;
    }

    .approach__card {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .approach__icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }



    .approach__text {
        font-size: 14px;
        /* ↓ 핵심 */
        line-height: 1.6;
        /* ↓ 살짝 압축 */
    }

    .approach__content p {
        margin-bottom: 20px;
    }


    .method {
        padding: 72px 16px;
    }

    .method__grid {
        grid-template-columns: 1fr;
        /* 핵심 */
        gap: 12px;
    }

    .method__card {
        padding: 16px 14px;
        /* ↓ 공간 압축 */
        border-radius: 16px;
    }

    .method__title {
        margin-bottom: 24px;
    }

    .method__text {
        font-size: 14px;
        /* ↓ 중요 */
        line-height: 1.5;
    }

    .method__tag {
        font-size: 13px;
    }

    .method__icon {
        font-size: 20px;
    }

    .method__step {
        font-size: 11px;
    }


    .curriculum {
        padding: 20px 16px 10px;
    }

    

    .curriculum__text {
        font-size: 14px;
    }

    .curriculum__card {
        gap: 12px;
        padding: 18px 16px;
        border-radius: 18px;
    }

    .curriculum__step {
        font-size: 13px;
        padding: 7px 11px;
    }

    .curriculum__content h3 {
        font-size: 18px;
    }

    .curriculum__content p {
        font-size: 14px;
    }

    .label {
        font-size: 14px;
    }

    .desc {

        font-size: 14px;
    }


 

    .review-content {
        font-size: 14px;
        line-height: 1.7;
    }

    

    .review-section {
        flex-direction: column;
        gap: 16px;
      }
    
      .review-card {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
      }


    


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

    .price__card {
        padding: 18px 16px;
    }


    .faq {
        padding: 56px 18px 64px;
    }

    .faq__title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .faq__item summary {
        padding: 19px 52px 19px 20px;
        font-size: 16px;
    }

    .faq__item p {
        padding: 0 20px 20px;
        font-size: 15px;
    }


    .final-cta {
        padding: 68px 18px 78px;
    }

    .final-cta__title {
        font-size: 31px;
        line-height: 1.42;
    }

    .final-cta__sub {
        margin: 18px 0 28px;
        font-size: 17px;
    }

    .final-cta__btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 24px;
        font-size: 16px;
    }

    .final-deco {
        display: none;
    }

    .final-mobile-gallery {
        position: relative;

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

        width: 100%;
        height: 150px;

        margin-bottom: 28px;
    }

    .mobile-fade {
        position: absolute;

        width: 152px;
        border-radius: 20px;

        opacity: 0;

        transition:
            opacity 0.8s ease,
            transform 0.8s ease;
    }

    .mobile-fade.left {
        left: -6px;
    }

    .mobile-fade.right {
        right: -6px;
    }

    .mobile-fade.active {
        opacity: 1;
        transform: scale(1);
    }


    .footer {
        padding: 40px 18px 32px;
    }

    .footer__company p {
        flex-direction: column;
        gap: 2px;
    }

    .footer__company span:first-child {
        min-width: auto;
    }

}