/* ===========================================
   APT All-in-One 페이지 CSS
   멤버십 페이지와 동일한 구조로 섹션별 스타일링
   =========================================== */


/* ===========================================
   공통 변수 및 기본 설정
   =========================================== */

:root {
    --bg: #fcfcfc;
    --card: #eaeaea;
    --text: #333;
    --muted: rgba(0, 0, 0, .75);
    --line: rgba(0, 0, 0, .08);
    --gold: #C9A86A;
    --gold-hover: #A57D47;
    --emerald: #2FAF72;
    --emerald-weak: rgba(47, 175, 114, .16);
    --radius: 16px;
    --container: 1120px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --sp-xxl: 96px;
    --sp-xl: 72px;
    --sp-lg: 48px;
    --sp-md: 28px;
    --sp-sm: 16px;
}

.apt-allinone-page * {
    box-sizing: border-box;
}

.apt-allinone-page {
    background: var(--bg-dark);
    color: var(--text);
    font-family: Pretendard, Inter, system-ui, sans-serif;
    line-height: 1.65;
    margin: 0;
    padding: 0;
}

.apt-allinone-page img {
    max-width: 100%;
    display: block;
    margin: 10px 0;
}

.apt-allinone-page a {
    text-decoration: none;
    color: inherit;
}


/* 공통 컨테이너 */

.apt-allinone-page .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-sm);
}


/* 공통 섹션 */

.apt-allinone-page .section {
    padding: var(--sp-xxl) 0;
}


/* 공통 타이포그래피 */

.apt-allinone-page h1 {
    font-size: 48px;
    line-height: 1.3;
    margin: 10px 0;
    background: linear-gradient(90deg, var(--color-primary-hover, #A57D47) 0%, var(--color-primary, #C9A86A) 40%, #FFFFFF 50%, var(--color-primary, #C9A86A) 60%, var(--color-primary-hover, #A57D47) 100%);
    background-size: 213% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldCardShine 7s ease-out infinite;
}

@keyframes goldCardShine {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.apt-allinone-page h2 {
    font-size: 42px;
    line-height: 1.5;
    margin: 0 0 var(--sp-sm);
    font-weight: 800;
}

.apt-allinone-page h3 {
    font-size: clamp(18px, 2.2vw, 22px);
    margin: 0 0 var(--sp-sm);
}

.apt-allinone-page .muted {
    color: var(--muted);
    font-size: 20px;
    word-break: keep-all;
}


/* 공통 버튼 스타일 */

.apt-allinone-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: background .2s ease;
}

.apt-allinone-page .btn-primary {
    background: var(--gold);
    color: #111;
}

.apt-allinone-page .btn-primary:hover {
    background: var(--gold-hover);
}

.apt-allinone-page .btn-ghost {
    border: 1px solid var(--line);
    background: transparent;
}

.apt-allinone-page .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* 공통 배지 */

.apt-allinone-page .badge {
    display: inline-block;
    padding: 7px 23px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    isolation: isolate;
}

.apt-allinone-page .badge-bg {
    position: absolute;
    inset: 0;
    background: #000;
    border-radius: 999px;
    z-index: 0;
}

.apt-allinone-page .badge-text {
    position: relative;
    z-index: 1;
    color: #fff;
    mix-blend-mode: difference;
}


/* 공통 Reveal 애니메이션 */

.apt-allinone-page [data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .6s ease;
}

.apt-allinone-page [data-reveal].visible {
    opacity: 1;
    transform: none;
}


/* ===========================================
   1. Hero Section
   =========================================== */

.apt-allinone-page .hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    border-top: none;
    /* background: linear-gradient(to bottom, #0E0E0E 0%, #161617 100%); */
}

.apt-allinone-page .hero-content {
    width: 100%;
    padding: 50px 0 100px;
    display: flex;
    align-items: flex-end;
    /* min-height: 600px; */
}

.apt-allinone-page .hero-object {
    max-width: 400px;
}

.apt-allinone-page .hero-text {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.apt-allinone-page .hero-text p.muted {
    color: #fff;
}


/* ============================================
   통합 인터뷰 섹션 스타일 - 다크 톤 + 실버 포인트
   ============================================ */

.interview-unified-section {
    padding: 150px 15px;
    background: linear-gradient(to top, var(--bg-dark) 0%, #000 100%);
    position: relative;
}

.interview-unified-section .container {
    max-width: 1200px;
    margin: 0 auto;
}


/* ============================================
   섹션 헤더
   ============================================ */

.interview-unified-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.interview-unified-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.interview-unified-section .section-subtitle {
    font-size: 18px;
    color: #a8adb8;
    line-height: 1.6;
}


/* ============================================
   인터뷰 카드 그리드
   ============================================ */

.hero-content .interview-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 80px;
    max-width: 800px;
    margin: 80px auto 0;
    display: none;
}

.hero-content .card-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
}

.hero-content .persona-tag {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(192, 197, 206, 0.15) 0%, rgba(168, 173, 184, 0.1) 100%);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(192, 197, 206, 0.2);
}

.hero-content .persona-type {
    font-size: 13px;
    color: #8b90a0;
    font-weight: 500;
}

.hero-content .persona-emoji {
    text-align: center;
    margin: 20px 0;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    overflow: hidden;
}

.hero-content .persona-emoji img {
    max-width: 135px;
    display: block;
    border-radius: 0;
    border: 0;
    aspect-ratio: 1 / 1;
}

.hero-content .speech-bubble {
    background: #171717de;
    color: #ffffffd6;
    font-size: 18px;
    font-weight: 400;
    padding: 25px 22px;
    border-radius: 16px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    min-height: 70px;
    word-break: keep-all;
}

.hero-content .speech-bubble .strong {
    margin: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #fff;
}

.hero-content .speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #171717;
}

.hero-content .needs-section {
    margin-top: 24px;
}

.hero-content .needs-title {
    font-size: 12px;
    font-weight: 700;
    color: #a8adb8;
    letter-spacing: 0px;
    margin-bottom: 8px;
}

.hero-content .needs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-content .needs-list li {
    font-size: 14px;
    color: #c0c5ce;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

.hero-content .needs-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #a8adb8;
    font-weight: bold;
    font-size: 16px;
}


/* ============================================
   브릿지 배너
   ============================================ */

.interview-unified-section .bridge-wrapper {
    text-align: center;
    margin: 80px 0;
    position: relative;
}

.interview-unified-section .bridge-wrapper::before,
.interview-unified-section .bridge-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 420px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(192, 197, 206, 0.2), transparent);
}

.interview-unified-section .bridge-wrapper::before {
    left: 0;
}

.interview-unified-section .bridge-wrapper::after {
    right: 0;
}

.interview-unified-section .bridge-banner {
    display: inline-block;
    background: #171717;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    padding: 22px 64px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.interview-unified-section .bridge-sub {
    font-size: 16px;
    color: #8b90a0;
    margin-top: 20px;
    line-height: 1.6;
}


/* ============================================
   하이라이트 카드 그리드
   ============================================ */

.interview-unified-section .highlight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.interview-unified-section .highlight-card {
    background: linear-gradient(145deg, #101319 0%, #0a0d10 100%);
    border: 1px solid rgba(192, 197, 206, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-align: center;
}

.interview-unified-section .highlight-card:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(192, 197, 206, 0.3);
}

.interview-unified-section .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #a8adb8 0%, #8b90a0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.interview-unified-section .card-icon svg {
    width: 48px;
    height: 48px;
}

.interview-unified-section .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.interview-unified-section .card-subtitle {
    font-size: 14px;
    color: #a8adb8;
    margin-bottom: 20px;
    font-weight: 600;
}

.interview-unified-section .card-description {
    font-size: 14px;
    color: #c0c5ce;
    line-height: 1.8;
    text-align: center;
}


/* ============================================
   애니메이션 - Reveal 효과
   ============================================ */

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal][data-delay="100"] {
    transition-delay: 0.1s;
}

[data-reveal][data-delay="200"] {
    transition-delay: 0.2s;
}

[data-reveal][data-delay="300"] {
    transition-delay: 0.3s;
}


/* ============================================
   반응형 디자인
   ============================================ */


/* 태블릿 (768px ~ 1024px) */

@media (max-width: 1024px) {
    .interview-unified-section .interview-cards,
    .interview-unified-section .highlight-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .interview-unified-section .section-title {
        font-size: 28px;
        word-break: keep-all;
    }
    .interview-unified-section .bridge-banner {
        word-break: break-all;
        font-size: 20px;
        padding: 18px 48px;
    }
    .interview-unified-section .bridge-wrapper::before,
    .interview-unified-section .bridge-wrapper::after {
        width: calc(50% - 320px);
    }
}


/* 모바일 (768px 이하) */

@media (max-width: 768px) {
    .interview-unified-section {
        padding: 80px 0px;
    }
    .interview-unified-section .interview-cards,
    .interview-unified-section .highlight-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .interview-unified-section .section-title {}
    .interview-unified-section .section-subtitle {}
    .interview-unified-section .bridge-wrapper {
        margin: 60px 0;
    }
    .interview-unified-section .bridge-wrapper::before,
    .interview-unified-section .bridge-wrapper::after {
        display: none;
    }
    .interview-unified-section .bridge-banner {
        font-size: 18px;
        padding: 16px 32px;
        line-height: 1.4;
    }
    .interview-unified-section .bridge-sub {
        font-size: 14px;
        padding: 0 20px;
    }
    .interview-unified-section .speech-bubble {
        font-size: 16px;
        padding: 16px 20px;
        min-height: 60px;
    }
    .interview-unified-section .card-title {
        font-size: 20px;
    }
    .interview-unified-section .interview-card,
    .interview-unified-section .highlight-card {
        padding: 24px;
    }
    .apt-allinone-page .solution-header h2 {
        font-size: 32px;
    }
}


/* 작은 모바일 (480px 이하) */

@media (max-width: 480px) {
    .interview-unified-section .section-title {}
    .interview-unified-section .bridge-banner {}
    .interview-unified-section .card-icon {
        width: 64px;
        height: 64px;
    }
    .interview-unified-section .card-icon svg {
        width: 36px;
        height: 36px;
    }
}


/* ============================================
   접근성 개선
   ============================================ */

.interview-unified-section .interview-card:focus-visible,
.interview-unified-section .highlight-card:focus-visible {
    outline: 2px solid #a8adb8;
    outline-offset: 4px;
}


/* 키보드 포커스 스타일 */

.interview-unified-section .interview-card:focus,
.interview-unified-section .bridge-banner:focus {
    outline: 2px solid #a8adb8;
    outline-offset: 4px;
}


/* Reduced Motion 지원 */

@media (prefers-reduced-motion: reduce) {
    .interview-unified-section * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .apt-allinone-page .reviews-slider-track {
        animation: none !important;
    }
}


/* ============================================
   추가 효과: 카드 글로우 효과
   ============================================ */

.interview-unified-section .interview-card:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(192, 197, 206, 0.1);
}

.interview-unified-section .highlight-card:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(192, 197, 206, 0.1);
}


/* ===========================================
   4. Roadmap Section (로드맵)
   =========================================== */

.apt-allinone-page .roadmap-section {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 200px 0;
}

.apt-allinone-page .roadmap {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
    align-items: start;
}


/* 좌측 Sticky 블록 */

.apt-allinone-page .roadmap-sticky {
    position: sticky;
    top: 240px;
}

.apt-allinone-page .roadmap-sticky h2 {
    margin-bottom: var(--sp-md);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1px;
    color: #ffffff;
}

.apt-allinone-page .roadmap-subtitle {
    margin-bottom: var(--sp-lg);
}

.apt-allinone-page .roadmap-subtitle p {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 12px 0;
    word-break: keep-all;
}

.apt-allinone-page .roadmap-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apt-allinone-page .roadmap-point {
    display: flex;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
}

.apt-allinone-page .roadmap-point .point-label {
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.apt-allinone-page .roadmap-point .point-text {
    color: rgba(255, 255, 255, 0.7);
    word-break: keep-all;
}


/* 진행 도트 표시 */

.apt-allinone-page .roadmap-progress-dots {
    display: flex;
    gap: 8px;
    position: absolute;
    top: -19px;
    left: 5px;
}

.apt-allinone-page .roadmap-progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease;
}

.apt-allinone-page .roadmap-progress-dot.active {
    background: var(--gold);
}


/* 우측 스텝 리스트 */

.apt-allinone-page .roadmap-steps {
    display: flex;
    flex-direction: column;
    gap: 140px;
}

.apt-allinone-page .step {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
    opacity: 0.2;
    transition: opacity 0.4s ease;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apt-allinone-page .step.is-active {
    opacity: 1;
}

.apt-allinone-page .step-number {
    position: absolute;
    left: -17px;
    top: -46px;
    font-size: 100px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    opacity: 0.2;
    z-index: 0;
    letter-spacing: -6px;
}

.apt-allinone-page .step-image {
    width: 140px;
    height: auto;
    aspect-ratio: 5 / 4;
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.apt-allinone-page .step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apt-allinone-page .step-content h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.4;
    color: #ffffff;
}

.apt-allinone-page .step-content h3 span {
    display: inline-block;
    font-size: 14px;
    background: linear-gradient(135deg, rgba(240, 240, 245, 0.25), rgba(220, 220, 230, 0.20));
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 30px;
}

.apt-allinone-page .step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0px 0;
    word-break: keep-all;
}


/* ===========================================
   2-1. Solution Section (솔루션 소개)
   =========================================== */

.apt-allinone-page .solution-section {
    background: var(--bg-dark);
    color: var(--color-white);
    padding: 80px 0;
}

.apt-allinone-page .solution-section .container {
    background: #0b0b0b;
    border-radius: 20px;
    padding: 50px 15px;
    max-width: 1400px;
    /* 초기 상태: 점에서 시작 */
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
    transition: clip-path 1.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-out;
    transform-origin: center;
}


/* 애니메이션 트리거 클래스 - solution-section에만 적용 */

.apt-allinone-page .solution-section .container.animate-in {
    clip-path: circle(100% at 50% 50%);
    opacity: 1;
}

.apt-allinone-page .solution-header {
    text-align: center;
    margin-bottom: 30px;
}

.apt-allinone-page .solution-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    /* letter-spacing: 0.5px; */
}

.apt-allinone-page .solution-header h2 {
    color: var(--color-white);
    margin: 0;
    font-size: 36px;
    font-weight: 700;
}

.apt-allinone-page .solution-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.apt-allinone-page .solution-text-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 13px;
}

.apt-allinone-page .solution-text-block p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    word-break: keep-all;
}

.apt-allinone-page .solution-highlight {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.6;
    word-break: keep-all;
}


/* ===========================================
   3-1. Target Audience Section (강의 대상 & Not 대상)
   =========================================== */

.apt-allinone-page .target-audience-section {
    background: var(--bg-dark);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.apt-allinone-page .target-audience-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


/* 배경 이미지 */

.apt-allinone-page .target-audience-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 0.4s ease;
    filter: blur(4px);
}


/* 기본 배경 이미지 */

.apt-allinone-page .target-audience-bg-default {
    background-image: url('../images/apt/apt-target-bg-good.jpg');
    opacity: 1;
    z-index: 0;
}


/* 추천 섹션 배경 이미지 */

.apt-allinone-page .target-audience-bg-good {
    background-image: url('../images/apt/apt-target-bg-good.jpg');
    opacity: 0;
    z-index: 0;
}

.apt-allinone-page .target-audience-bg-good,
.apt-allinone-page .target-audience-bg-default {
    filter: blur(2px);
}


/* 비추천 섹션 배경 이미지 */

.apt-allinone-page .target-audience-bg-bad {
    background-image: url('../images/apt/apt-target-bg-bad.jpeg');
    opacity: 0;
    z-index: 0;
}


/* 추천 섹션 호버 시 배경 이미지 변경 - 전체 섹션 배경 변경 */

.apt-allinone-page .target-audience-wrapper:has(.target-good:hover) .target-audience-bg-default,
.apt-allinone-page .target-audience-wrapper:has(.target-good:hover) .target-audience-bg-bad {
    opacity: 0;
}

.apt-allinone-page .target-audience-wrapper:has(.target-good:hover) .target-audience-bg-good {
    opacity: 1;
    z-index: 0;
}


/* 비추천 섹션 호버 시 배경 이미지 변경 - 전체 섹션 배경 변경 */

.apt-allinone-page .target-audience-wrapper:has(.target-bad:hover) .target-audience-bg-default,
.apt-allinone-page .target-audience-wrapper:has(.target-bad:hover) .target-audience-bg-good {
    opacity: 0;
}

.apt-allinone-page .target-audience-wrapper:has(.target-bad:hover) .target-audience-bg-bad {
    opacity: 1;
    z-index: 0;
}


/* 다크 오버레이 */

.apt-allinone-page .target-audience-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}


/* 좌우 분할 컨테이너 */

.apt-allinone-page .target-audience-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    min-height: 100vh;
    gap: 0;
}


/* 중앙 구분선 */

.apt-allinone-page .target-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}


/* 각 섹션 박스 */

.apt-allinone-page .target-audience-box {
    position: relative;
    padding: var(--sp-xxl) var(--sp-xl);
    display: flex;
    align-items: center;
    z-index: 2;
    cursor: pointer;
}


/* 추천 섹션 기본 배경 */

.apt-allinone-page .target-good {
    background: rgba(0, 0, 0, 0.4);
}


/* 비추천 섹션 기본 배경 */

.apt-allinone-page .target-bad {
    background: rgba(0, 0, 0, 0.4);
}


/* 컨텐츠 영역 */

.apt-allinone-page .target-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* 타이틀 */

.apt-allinone-page .target-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 var(--sp-md) 0;
    line-height: 1.3;
}


/* 설명 */

.apt-allinone-page .target-description {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 var(--sp-lg) 0;
    word-break: keep-all;
}


/* 배지형 리스트 */

.apt-allinone-page .target-badge-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp-md) 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apt-allinone-page .target-badge-item {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: clamp(14px, 1.8vw, 16px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    word-break: keep-all;
    transition: all 0.3s ease;
}

.apt-allinone-page .target-good .target-badge-item {
    border-color: rgba(47, 175, 114, 0.3);
}

.apt-allinone-page .target-bad .target-badge-item {
    border-color: rgba(231, 76, 60, 0.3);
}

.apt-allinone-page .target-badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}


/* 반응형 */

@media (max-width: 1024px) {
    .apt-allinone-page .target-audience-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .apt-allinone-page .target-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    .apt-allinone-page .target-audience-box {
        padding: var(--sp-xl) var(--sp-lg);
    }
}

@media (max-width: 768px) {
    .apt-allinone-page .target-audience-box {
        padding: 100px 20px;
    }
    .apt-allinone-page .target-title {
        font-size: 28px;
    }
    .apt-allinone-page .target-description {
        font-size: 16px;
    }
    .apt-allinone-page .target-badge-item {
        font-size: 16px;
        padding: 10px 16px;
    }
}


/* ===========================================
   6. Reviews Section (후기)
   =========================================== */

.apt-allinone-page .reviews-section {
    background: #F5F5F5;
    padding: 100px 0 120px;
    overflow: hidden;
}

.apt-allinone-page .reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.apt-allinone-page .reviews-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.apt-allinone-page .reviews-header .section-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0;
}


/* 후기 슬라이더 */

.apt-allinone-page .reviews-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.apt-allinone-page .reviews-slider-track {
    display: flex;
    gap: 24px;
    width: fit-content;
    will-change: transform;
    animation: scrollReviews 30s linear infinite;
}

.apt-allinone-page .reviews-slider-wrapper:hover .reviews-slider-track {
    animation-play-state: paused;
}


/* 후기 카드 */

.apt-allinone-page .review-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    width: 420px;
    min-width: 420px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.apt-allinone-page .review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.apt-allinone-page .review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0 0 24px 0;
    flex: 1;
    word-break: keep-all;
}

.apt-allinone-page .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #F0F0F0;
}

.apt-allinone-page .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.apt-allinone-page .author-info {
    flex: 1;
}

.apt-allinone-page .author-name {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
}

.apt-allinone-page .author-time {
    font-size: 13px;
    color: #999999;
    margin: 0;
}


/* ===========================================
   7. FAQ Section (자주 묻는 질문)
   =========================================== */

.apt-allinone-page .faq-section {
    background: var(--bg-dark);
    padding: var(--sp-xxl) 0;
}

.apt-allinone-page .faq-header {
    text-align: center;
    margin-bottom: var(--sp-xl);
}

.apt-allinone-page .faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.apt-allinone-page .faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.apt-allinone-page .faq-item {
    padding: 5px 20px;
}

.apt-allinone-page .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    transition: color 0.2s ease;
}

.apt-allinone-page .faq-item.active {
    background: #151515;
    border-radius: 10px;
}

.apt-allinone-page .faq-question span {
    flex: 1;
    word-break: keep-all;
    line-height: 1.6;
}

.apt-allinone-page .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
    transform: rotate(180deg);
    /* 기본 상태: 위쪽 화살표 */
}

.apt-allinone-page .faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(0deg);
    /* 열린 상태: 아래쪽 화살표 */
    color: rgba(255, 255, 255, 0.9);
}

.apt-allinone-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    padding: 0;
    opacity: 0;
}

.apt-allinone-page .faq-question[aria-expanded="true"]+.faq-answer {
    max-height: 1000px;
    padding: 0 0 24px 0;
    opacity: 1;
}

.apt-allinone-page .faq-answer p {
    margin: 0;
    padding-left: 0px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    word-break: keep-all;
}


/* 반응형 */

@media (max-width: 768px) {
    .apt-allinone-page .faq-section {
        padding: 60px 0;
    }
    .apt-allinone-page .faq-header {
        margin-bottom: 40px;
    }
    .apt-allinone-page .faq-question {
        padding: 20px 0;
        font-size: 16px;
    }
    .apt-allinone-page .faq-answer p {}
    .apt-allinone-page .faq-icon {
        width: 18px;
        height: 18px;
        margin-left: 12px;
    }
    .apt-allinone-page .faq-header h2 {
        font-size: 32px;
    }
}


/* ===========================================
   8. Final CTA Section (최종 신청)
   =========================================== */

.apt-allinone-page .final-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: var(--sp-xxl) 0;
}

.apt-allinone-page .final-cta-content {
    text-align: center;
}

.apt-allinone-page .final-cta-content h2 {
    color: #ffffff;
    margin-bottom: var(--sp-sm);
}

.apt-allinone-page .final-cta-content .muted {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--sp-lg);
}

.apt-allinone-page .final-cta-content .btn {
    margin-top: 20px;
}


/* ===========================================
   8. Sticky CTA (플로팅 버튼)
   =========================================== */

.apt-allinone-page .sticky-cta {
    --aap-min-height: 56px;
    --aap-blur: 12px;
    --aap-margin: 20px;
    --aap-background-color: rgba(20, 20, 20, .9);
    position: fixed;
    bottom: var(--aap-margin);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    transition: opacity .4s ease;
}

.apt-allinone-page .sticky-cta.active {
    opacity: 1;
    pointer-events: all;
}

.apt-allinone-page .sticky-cta.active .sticky-cta__background {
    animation: elasticPop 1s ease-in-out forwards;
}

.apt-allinone-page .sticky-cta .container {
    display: flex;
    justify-content: center;
    padding: 0;
    max-width: none;
}

.apt-allinone-page .sticky-cta__background {
    -webkit-backdrop-filter: blur(var(--aap-blur));
    backdrop-filter: blur(var(--aap-blur));
    background-color: var(--aap-background-color);
    border-radius: 300px;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--aap-min-height);
    padding: 14px 12px 12px 32px;
    will-change: width;
    width: 0;
    opacity: 0;
    overflow: hidden;
}

@keyframes elasticPop {
    0% {
        opacity: 0;
        width: 0;
    }
    80% {
        width: 840px;
        opacity: 1;
    }
    100% {
        opacity: 1;
        width: 840px;
    }
}

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

.apt-allinone-page .sticky-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    gap: 10px;
    height: auto;
    padding: 5px 5px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    background: transparent;
    color: #fff;
    border: none;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    white-space: nowrap;
}

.apt-allinone-page .sticky-cta .btn:active {
    transform: scale(.98);
}

.apt-allinone-page .sticky-cta .btn svg {
    width: 37px;
    height: 37px;
    padding: 8px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    flex-shrink: 0;
}

.apt-allinone-page .sticky-cta .btn:hover svg {
    transform: translateX(3px);
}


/* Sticky CTA 정보 영역 */

.apt-allinone-page .sticky-cta__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.apt-allinone-page .sticky-cta__title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.apt-allinone-page .sticky-cta__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.apt-allinone-page .sticky-cta__price-regular {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.apt-allinone-page .sticky-cta__price-sale {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.apt-allinone-page .sticky-cta__rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.apt-allinone-page .sticky-cta__students {
    font-size: 12px;
}


/* ===========================================
   반응형 디자인
   =========================================== */

@media (max-width: 900px) {
    /* Hero */
}

@media (max-width: 768px) {
    .apt-allinone-page .badge {
        padding: 5px 21px;
        font-size: 16px;
    }
    .apt-allinone-page .hero-content {
        padding: 30px 0 70px;
    }
    .apt-allinone-page {}
    .apt-allinone-page .container {
        padding: 0 20px;
    }
    .apt-allinone-page h1 {
        font-size: 28px;
    }
    .apt-allinone-page .muted {
        font-size: 18px;
        word-break: auto-phrase;
    }
    /* Roadmap Section */
    .apt-allinone-page .roadmap {
        grid-template-columns: 1fr;
        gap: var(--sp-lg);
    }
    .apt-allinone-page .roadmap-sticky {
        position: static;
    }
    .apt-allinone-page .step {
        grid-template-columns: 60px 100px 1fr;
        gap: 12px;
    }
    .apt-allinone-page .step-number {}
    .apt-allinone-page .step-image {
        width: 100px;
        height: 100px;
    }
    .apt-allinone-page .step-content h3 {
        font-size: 20px;
    }
    .apt-allinone-page .step-content p {
        font-size: 15px;
    }
    /* Sticky CTA */
    .apt-allinone-page .sticky-cta {
        --aap-margin: 16px;
        left: var(--aap-margin);
        right: var(--aap-margin);
        transform: none;
        width: auto;
        max-width: calc(100% - var(--aap-margin) * 2);
    }
    .apt-allinone-page .sticky-cta__background {
        width: 100% !important;
        animation: elasticPopMobile .7s cubic-bezier(.68, -.55, .265, 1.55) forwards !important;
    }
    .apt-allinone-page .sticky-cta.active .sticky-cta__background {
        animation: elasticPopMobile .7s cubic-bezier(.68, -.55, .265, 1.55) forwards !important;
    }
    .apt-allinone-page .sticky-cta .btn {
        flex: 1;
        justify-content: space-between;
        font-size: 14px;
        padding: 0 12px 0 16px;
    }
    .apt-allinone-page .sticky-cta__info {
        margin-right: 8px;
    }
    .apt-allinone-page .sticky-cta__title {
        font-size: 12px;
        max-width: 150px;
    }
    .apt-allinone-page .sticky-cta__price-sale {
        font-size: 14px;
    }
    /* Solution Section */
    .apt-allinone-page .solution-section {
        padding: 60px 0;
    }
    .apt-allinone-page .solution-header {
        margin-bottom: 32px;
    }
    .apt-allinone-page .solution-card {
        padding: 20px 24px;
    }
    .apt-allinone-page .solution-check {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
    .apt-allinone-page .solution-check svg {
        width: 16px;
        height: 16px;
    }
    .apt-allinone-page .solution-text {
        font-size: 16px;
    }
    /* Reviews Section */
    .apt-allinone-page .reviews-section {
        padding: 60px 0 80px;
    }
    .apt-allinone-page .reviews-header h2 {
        font-size: 32px;
    }
    .apt-allinone-page .review-card {
        width: 340px;
        min-width: 340px;
        padding: 24px;
        min-height: 240px;
    }
    .apt-allinone-page .review-text {
        font-size: 14px;
    }
    .apt-allinone-page .reviews-slider-track {
        gap: 16px;
    }
    .apt-allinone-page .roadmap-section {
        padding: 120px 0;
    }
    .apt-allinone-page .roadmap-sticky h2 {
        font-size: 32px;
    }
    .apt-allinone-page .roadmap-subtitle p {
        font-size: 16px;
    }
}

@keyframes elasticPopMobile {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.05);
    }
    70% {
        transform: scaleX(0.96);
    }
    85% {
        transform: scaleX(1.02);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}