/* --- Hero Section 메인 컨테이너 --- */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* 가로 중앙 정렬 추가 */
    height: calc(100vh - 85px); /* 헤더(85px) 제외 높이로 수정 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    z-index: 1;
}

/* --- 메인 인트로 비디오 영역 (전체 화면 배경) --- */
.hero-bg-video {
    position: fixed; /* absolute에서 fixed로 복원하여 비디오 고정 */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1; 
    transition: opacity 0.5s ease, visibility 0.5s ease; /* smooth transition 추가 */
}

.hero-bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100%;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* 클릭 방지 */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 텍스트 가독성을 위한 어두운 오버레이 */
}

/* --- 중앙 메인 텍스트 영역 --- */
.hero-text-area {
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.typing-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #ffffff; /* [Fix] Ensure visibility on dark background */
    height: 145px; /* Fixed height to accommodate 2 lines and prevent pushing content below */
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #3b82f6;
    margin-left: 4px;
    vertical-align: baseline;
    position: relative;
    top: 0.1em; /* Slight adjustment to center perfectly with Korean text */
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- 하단 프롬프트 입력창 (Glassmorphism) --- */
.prompt-container {
    width: 100%;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 10px 30px;
    margin-bottom: 100px; /* 데코 카드 공간 확보 */
    position: relative;
    z-index: 5;
}

.prompt-input-wrapper {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.prompt-input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 0;
}

.prompt-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}


.prompt-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-advanced {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-dice, .icon-advanced, .icon-music {
    /* 아이콘은 FontAwesome 등을 사용한다고 가정 */
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.icon-dice {
    cursor: pointer;
    padding: 10px;
}

.btn-create {
    background: #ffd700; /* 크레딧 텍스트와 동일한 노란색/금색 */
    color: #111111; /* 노란색 배경에 잘 보이도록 어두운 텍스트 색상 적용 */
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700; /* 텍스트 가독성을 위해 굵기 조정 */
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s, opacity 0.2s;
}

.btn-create:hover {
    background: #ffcc00;
    opacity: 0.95;
}

/* --- 데코레이션 카드 --- */
.decor-card {
    position: absolute;
    width: 200px;
    height: 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0.8;
}

.decor-card p {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.decor-card span {
    font-size: 11px;
    opacity: 0.6;
}

/* 좌측 앨범 아트 */
.decor-left {
    left: 40px;
    bottom: 40px;
    transform: rotate(-10deg);
}

.icon-brain {
    width: 60px;
    height: 60px;
    background: url('/static/images/brain.svg') no-repeat center; /* 아이콘 경로 예시 */
    margin-bottom: 20px;
}

/* 우측 앨범 아트 */
.decor-right {
    right: 40px;
    bottom: 40px;
    transform: rotate(10deg);
}

.icon-star {
    width: 60px;
    height: 60px;
    background: url('/static/images/star.svg') no-repeat center; /* 아이콘 경로 예시 */
    margin-bottom: 20px;
}

/* 구글 가입 버튼 - 이메일 가입 버튼과 동일한 규격 */
.btn-google {
    width: 100%;
    height: 48px; /* Continue 버튼과 높이 통일 */
    background: #ffffff;
    color: #1f1f1f;
    border: 1px solid #dadce0;
    border-radius: 8px; /* 라운딩 값 통일 */
    font-size: 14px;    /* Continue 버튼 글씨 크기와 일치 */
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 16px;
    transition: background 0.2s;
}

.btn-google:hover {
    background: #f8f9fa;
}

.btn-google img {
    width: 18px;
    height: 18px;
}

/* 구분선 스타일 */
.modal-divider {
    margin-top: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid #333;
    position: relative;
    text-align: center;
}

.modal-divider span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1c; /* 모달 배경색과 동일하게 맞춰주세요 */
    padding: 0 12px;
    color: #888;
    font-size: 12px;
    text-transform: lowercase;
}

/* ==========================================
   모바일 반응형 레이아웃 (768px 이하)
   ========================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 0 16px;
    }

    .typing-title {
        font-size: 32px;
        letter-spacing: -1px;
        word-break: keep-all;
        height: 72px; /* Fixed height to accommodate 2 lines on mobile */
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.4;
    }

    .prompt-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 16px;
        gap: 16px;
        margin-bottom: 40px;
        align-items: stretch;
    }

    .prompt-input-wrapper input {
        font-size: 16px;
        padding: 8px 0;
    }

    .prompt-actions {
        width: 100%;
    }

    .btn-create {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 15px;
        border-radius: 12px;
    }

    .decor-card {
        display: none; /* 복잡한 화면 요소를 숨김 */
    }
}

/* ==========================================
   신규 프리미엄 랜딩 영역 (기존 히어로 하단에 오버레이)
   ========================================== */

/* main.html에서만 스크롤이 가능하도록 기본 content-wrapper의 100vh 제약을 오버라이드 */
/* main.html에서만 스크롤이 가능하도록 기본 content-wrapper의 100vh 제약을 오버라이드하는 스타일은 이제 templates/v2/main.html 내부에 삽입하여 격리합니다. */

/* 랜딩 컨텐츠 전체 플로우 */
.landing-sections-wrapper {
    position: relative;
    width: 100%;
    background: #090a0f; /* 꽉 차고 세련된 우주 다크 네이비 */
    color: #ffffff;
    z-index: 2; /* fixed 배경 비디오를 가리기 위한 레이어 */
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

/* 공통 랜딩 섹션 정의 */
.landing-section {
    position: relative;
    width: 100%;
    padding: 100px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* 텍스트 글로우 액센트 */
.text-glow-accent {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffd700; /* 황금색 포인트 */
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
    margin-bottom: 16px;
    display: inline-block;
}

/* 1. 도입부 (Intro) 섹션 스타일 */
.section-intro {
    background: radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05), transparent 50%), #090a0f;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.intro-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 24px;
    word-break: keep-all;
    background: linear-gradient(135deg, #ffffff 60%, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    word-break: keep-all;
}

/* 둥둥 뜨는 3D 비주얼 애니메이션 */
.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-3d-visual {
    width: 100%;
    max-width: 320px;
    height: auto;
    /* filter: drop-shadow(0 15px 30px rgba(255, 215, 0, 0.15)); */
    /* animation: floaty 4s ease-in-out infinite; */
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* 2 & 3. 지원자 및 기업 듀얼 피처 섹션 스타일 */
.features-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.features-dual-grid.grid-reverse {
    direction: ltr; /* 그리드 정밀 제어를 위한 리버스 */
}

.premium-mockup-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.03);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.premium-mockup-img:hover {
    transform: translateY(-8px) scale(1.02);
}

.badge-role {
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.badge-candidate {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-company {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.section-subtitle {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #ffffff;
}

.section-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    word-break: keep-all;
}

/* 총알 목록 (피처 상세 설명) */
.feature-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-bullet-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bullet-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffd700;
    font-size: 18px;
    flex-shrink: 0;
}

.bullet-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.bullet-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    word-break: keep-all;
}

/* 4. 핵심 가치 그리드 (Benefits) 섹션 스타일 */
.section-header-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-small-badge {
    font-size: 12px;
    font-weight: 800;
    color: #ffd700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-header-centered h3 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.3;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.benefit-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 24px;
}

.card-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    word-break: keep-all;
}

/* 5. 자주 묻는 질문 (FAQ) 섹션 스타일 */
.faq-layout-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.faq-intro-col h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.faq-intro-col p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.faq-visual-wrapper {
    display: flex;
    justify-content: center;
}

.faq-floating-3d {
    width: 100%;
    max-width: 240px;
    height: auto;
    /* filter: drop-shadow(0 15px 30px rgba(59, 130, 246, 0.2)); */
    /* animation: floaty-faq 5s ease-in-out infinite; */
}

@keyframes floaty-faq {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

.faq-accordion-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    gap: 20px;
    transition: color 0.3s ease;
}

.accordion-header span:first-child {
    word-break: keep-all;
}

/* 화살표 아이콘 커스텀 디자인 */
.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}

/* 가로선 */
.accordion-icon::before {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}

/* 세로선 (아코디언 토글 시 십자가 -> 마이너스로 변환용) */
.accordion-icon::after {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-body p {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    word-break: keep-all;
}

/* 아코디언 활성화 상태 스타일 */
.accordion-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-item.active .accordion-header {
    color: #ffd700;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg); /* 세련되게 십자가를 곱하기로 회전 */
}

.accordion-item.active .accordion-icon::before,
.accordion-item.active .accordion-icon::after {
    background-color: #ffd700;
}

/* 6. 하단 CTA 배너 스타일 */
.section-bottom-cta {
    padding: 120px 40px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03), transparent 70%), #06070a;
    border-bottom: none;
}

.cta-inner-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-inner-box h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.cta-inner-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    background: #ffd700;
    color: #06070a;
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #ffcc00;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


/* ==========================================
   신규 랜딩 섹션 모바일 반응형 (768px 이하)
   ========================================== */
@media (max-width: 768px) {
    .landing-section {
        padding: 60px 20px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .intro-text h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .intro-text p {
        font-size: 15px;
    }

    .features-dual-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* 모바일에서는 순서 보정 */
    .features-dual-grid.grid-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .section-subtitle {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .section-header-centered h3 {
        font-size: 26px;
    }

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

    .benefit-card {
        padding: 30px 20px;
    }

    .faq-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-intro-col {
        text-align: center;
    }

    .faq-intro-col p {
        margin-bottom: 20px;
    }

    .faq-floating-3d {
        max-width: 160px;
    }

    .accordion-header {
        padding: 18px;
        font-size: 15px;
    }

    .accordion-body p {
        padding: 0 18px 18px 18px;
        font-size: 13.5px;
    }

    .cta-inner-box {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-inner-box h3 {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .cta-inner-box p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }
}

/* ==========================================
   중간 슬로건 배너 섹션 스타일
   ========================================== */
.section-slogan-banner {
    padding: 0;
    background: #090a0f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.slogan-banner-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slogan-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.slogan-text-overlay {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    pointer-events: none;
}

.slogan-dynamic-text {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    letter-spacing: -0.5px;
    white-space: pre-line;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    word-break: keep-all;
}

/* 반응형 처리 */
@media (max-width: 768px) {
    .slogan-dynamic-text {
        font-size: 12px;
        line-height: 1.4;
    }
    .slogan-text-overlay {
        bottom: 11%;
    }
}


/* ==========================================
   하단 프리미엄 푸터 스타일 (TriaView Landing Footer)
   ========================================== */
.triaview-landing-footer {
    background: var(--bg-dark) !important; /* 100% 불투명 솔리드 블랙으로 통일하여 어색함 제거 */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px 30px 40px;
    width: 100%;
    position: relative;
    z-index: 10;
    
    /* 🚀 초고속 스크롤 및 오버스크롤 바운스 시 아래쪽으로 비디오가 절대 비치지 않게 막아주는 9999px 차단벽 트릭 */
    box-shadow: 0 0 0 9999px var(--bg-dark);
    clip-path: inset(0 -9999px -9999px); /* 상단(top: 0)은 딱 자르고, 하단/좌우는 무제한 확장 노출 */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand .brand-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
}

.footer-brand .brand-slogan {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-links a.highlight-link {
    color: rgba(255, 255, 255, 0.85);
}

.footer-links a.highlight-link:hover {
    color: #ffd700;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 35px;
}

.footer-bottom-row {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
}

.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    align-items: center;
}

.details-item {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.details-item strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.details-item.address {
    width: 100%;
}

.customer-support {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.support-title {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.support-email {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 6px;
}

.support-email:hover {
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}

.support-hours {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 25px;
}

/* 푸터 모바일 반응형 처리 */
@media (max-width: 768px) {
    .triaview-landing-footer {
        padding: 40px 20px 20px 20px;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }

    .footer-bottom-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}/* ==========================================================================
   ✨ TRIAVIEW B2B RENEWAL LANDING PAGE PREMIUM CSS (testpage.css)
   ========================================================================== */

/* --- 폰트 가져오기 (Google Fonts Outfit & Inter) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #000000;              /* 리치 퓨어 블랙 (배경) */
    --navy-deep: #0b0b0e;            /* 차분한 다크 차콜 (카드 및 목업 기본 배경) */
    --navy-light: #18181c;           /* 약간 밝은 메탈 그레이 */
    --blue-accent: #ffd700;          /* 메인 브랜드 포인트: 골드 */
    --blue-glow: #ffcc00;            /* 골드 글로우 */
    --gold-accent: #ffffff;          /* 화이트/실버 포인트 */
    --gold-hover: #ffd700;
    --red-alert: #f97316;            /* 오렌지/레드 (리스크 요인) */
    --green-success: #22c55e;        /* 연두/그린 (Requirement Check 및 안전 텍스트) */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85); /* 가독성 향상을 위해 불투명도 증가 */
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-light: rgba(255, 215, 0, 0.12); /* 은은한 골드 경계선 */
    --border-glow: rgba(255, 215, 0, 0.35);  /* 골드 경계선 글로우 */
    --glass-bg: rgba(10, 10, 14, 0.65);       /* 다크 틴티드 글래스 모달/카드 배경 */
    --glass-blur: blur(24px);
}

/* --- 전역 스코프 격리 및 높이 제약 제어 --- */
body, html {
    height: auto !important;
    min-height: 100% !important;
    overflow-y: auto !important;
    background-color: var(--bg-dark) !important;
    font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-primary);
    scroll-behavior: smooth;
}

.content-wrapper {
    height: auto !important;
    min-height: calc(100vh - 80px) !important;
    display: block !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
}

/* --- 공통 섹션 스타일 --- */
.b2b-section {
    position: relative;
    padding: 144px 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-glow);
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #ffffff 50%, #b0c2f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* --- Vimeo 배경 비디오 --- */
.hero-bg-video {
    position: fixed; /* absolute에서 fixed로 복원하여 비디오 고정 */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1; 
    transition: opacity 0.5s ease, visibility 0.5s ease; /* smooth transition 추가 */
}

.hero-bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 청색 이질감을 완벽히 제거하기 위해 rgba(7, 9, 19, ...) 남색을 순수 블랙 계통으로 전면 수정 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.8) 75%, var(--bg-dark) 100%);
}


/* ==========================================
   1. Hero Section
   ========================================== */
.b2b-hero {
    min-height: calc(100vh - 85px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 40px 24px; /* 헤더 공간만큼 상단 패딩 추가 */
    box-sizing: border-box;
    position: relative;
    max-width: 1000px;
}

/* 🎥 동영상과 까만 일반 배경의 경계선이 뚝 잘리지 않고 수백 픽셀에 걸쳐 은은히 빨려 들어가는 500px 초대형 안개 트랜지션 마스크 */
/* clip-path 제약이 있는 #problem::before 대신, 제약이 없는 .b2b-hero::after를 사용하여 화면 가로 100% 그라데이션 구현 */
.b2b-hero::after {
    content: "";
    position: absolute;
    bottom: -168px; /* #problem의 margin-top인 168px에 딱 맞춤 */
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 500px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.8) 75%, var(--bg-dark) 100%);
    pointer-events: none;
    z-index: 3;
}

#problem,
#problem ~ .b2b-section,
#problem ~ section {
    background-color: var(--bg-dark) !important;
    position: relative;
    z-index: 5;
    /* 브라우저 가로 100% 전체를 솔리드 컬러로 덮기 위해 box-shadow 트릭 적용 */
    box-shadow: 0 0 0 9999px var(--bg-dark);
    clip-path: inset(0 -9999px); /* 그림자가 위아래로 삐져나가지 않고 양옆으로만 100% 퍼지도록 절단 */
}

#problem {
    margin-top: 168px; /* 비디오 Hero 섹션과 Problem 섹션 사이 여백 시원하게 확보 */
}

/* 🎥 #problem::before 마스크는 clip-path: inset(0)에 의해 위쪽이 잘리므로 비활성화(b2b-hero::after로 대체됨) */
/*
#problem::before {
    content: "";
    position: absolute;
    top: -500px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 500px;
    background: linear-gradient(to bottom, rgba(7, 9, 19, 0) 0%, rgba(7, 9, 19, 0.1) 35%, rgba(7, 9, 19, 0.6) 75%, rgba(7, 9, 19, 0.9) 90%, rgba(7, 9, 19, 1) 100%);
    pointer-events: none;
    z-index: 4;
}
*/

.hero-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--blue-glow);
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 24px;
    word-break: keep-all;
    width: 100%;
    max-width: 900px;
}

.hero-title span {
    color: #ffffff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
}

.hero-desc {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 720px;
    line-height: 1.65;
    margin-bottom: 48px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-ctas-sub {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap !important;
    width: 100%;
}

.btn-primary-glow {
    background: #ffd700;
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    background: #ffcc00;
}

.btn-secondary-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 17px 35px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ==========================================
   2. Problem Section
   ========================================== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.00) 100%);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--border-glow);
    background: rgba(255, 215, 0, 0.04);
    transform: translateY(-5px);
}

.problem-card:hover::before {
    background: var(--blue-accent);
}

.card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-glow);
    margin-bottom: 20px;
    display: block;
}

.problem-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.problem-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   3. Loss Section
   ========================================== */
.loss-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    background: rgba(239, 68, 68, 0.02);
    border: 1px solid rgba(239, 68, 68, 0.08);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(15px);
}

.loss-text h3 {
    font-size: 32px;
    font-weight: 800;
    margin-top: 0;
    color: #ffffff;
}

.loss-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0;
}

.loss-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.loss-item {
    background: rgba(7, 9, 19, 0.5);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.loss-item:hover {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.04);
}

.loss-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-alert);
    font-weight: 800;
    font-size: 12px;
}

.loss-title {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   4. Solution Section
   ========================================== */
.solution-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 60px;
}

/* 스텝 연결 라인 */
.solution-flow::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.65) 50%, rgba(255, 215, 0, 0.1) 100%);
    z-index: 1;
}

.flow-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy-deep);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.flow-step:hover .step-num-circle {
    border-color: var(--blue-accent);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.45);
    transform: scale(1.1);
}

.flow-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.flow-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================
   5. Report Preview Section (★핵심)
   ========================================== */
.report-preview-layout {
    display: grid;
    grid-template-columns: 1fr; /* 2열에서 1열로 웅장하게 변경 */
    gap: 30px;
    align-items: center;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.report-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    margin-top: 10px;
}

.preview-text-block {
    text-align: left;
}

.preview-text-block h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.25;
}

.preview-text-block p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 40px;
}

/* 💻 대시보드 리포트 이미지 목업 */
.report-preview-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-report-mockup-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.premium-report-mockup-img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.22);
}

/* 💻 대시보드 리포트 CSS 목업 */
.dashboard-mockup {
    background: #0f132e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* 대시보드 탑 헤더 */
.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
    margin-bottom: 24px;
}

.mockup-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ffcc00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 16px;
}

.user-meta h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: white;
}

.user-meta span {
    font-size: 12px;
    color: var(--text-muted);
}

.mockup-score-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mockup-score-badge .score-val {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--green-success);
}

.mockup-score-badge .score-lbl {
    font-size: 10px;
    color: var(--text-secondary);
}

/* 대시보드 내부 그리드 */
.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}

.mockup-left-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
}

.mockup-card h6 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--blue-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 오각형 역량 그래프 모사 */
.stat-bar-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item {
    font-size: 12px;
}

.stat-lbl-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.stat-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--blue-accent) 0%, var(--blue-glow) 100%);
    border-radius: 10px;
}

/* 리스크 요인 뱃지 */
.risk-pill-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.risk-pill {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.risk-pill.safe {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--green-success);
}

.risk-pill.warn {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--red-alert);
}

.mockup-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mockup-summary-box p {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.question-summary-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.q-summary-item {
    background: rgba(7, 9, 19, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 12px;
}

.q-title {
    font-size: 12px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.q-answer-snippet {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
   6. Benefits Section
   ========================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-8px);
}

.benefit-card-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card:hover .benefit-card-icon {
    transform: scale(1.08) rotate(2deg);
}

.benefit-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--blue-glow);
    font-size: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px 0;
    color: #ffffff;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   7. Use Cases Section
   ========================================== */
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.usecase-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.usecase-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.usecase-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    color: var(--blue-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
}

.usecase-info h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #ffffff;
}

.usecase-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================
   8. Candidate Experience Section
   ========================================== */
.candidate-exp-layout {
    display: grid;
    grid-template-columns: 1fr; /* 2열에서 1열로 웅장하게 변경 */
    gap: 30px;
    align-items: center;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.exp-modern-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

.exp-card-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.exp-card-item:hover {
    background: rgba(255, 215, 0, 0.04);
    border-color: rgba(255, 215, 0, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.08);
}

.exp-card-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.exp-card-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.exp-card-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.45;
    margin: 0 !important;
}

/* 💻 지원자 경험 섹션 듀얼 이미지 레이아웃 (무절단 원본비율 보존 + 높이 완전 동기화) */
.candidate-images-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap; /* 오버플로우 방지 */
}

.premium-candidate-img {
    display: block;
    height: 480px; /* 상하 폭(높이)을 오차 없이 완벽히 일치시킴 */
    width: auto; /* 좌우 폭은 이미지의 원본 비율에 따라 자동 신축 (절대 잘리지 않음!) */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.premium-candidate-img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.22);
}

.candidate-visual-mockup {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-mobile-mockup-img {
    display: block;
    max-width: 80%;
    height: auto;
    max-height: 540px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.premium-mobile-mockup-img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 215, 0, 0.2);
}

.mobile-frame-sim {
    max-width: 320px;
    margin: 0 auto;
    background: #111536;
    border: 4px solid #1c214d;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-header {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 10px;
}

.mobile-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
}

.video-feed-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 2px dashed rgba(255, 215, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.video-feed-placeholder::before {
    content: '🎥';
    font-size: 32px;
}

.video-rec-dot {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: var(--red-alert);
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

.mobile-body h5 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.mobile-body p {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.mobile-footer {
    display: flex;
    justify-content: center;
}

.btn-mobile-action {
    background: var(--blue-accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 24px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
}

.candidate-exp-details {
    text-align: left;
}

.candidate-exp-details h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.candidate-exp-details p {
    font-size: 16.5px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 35px;
}

.exp-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.exp-point-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.exp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-glow);
}

.exp-point-item span {
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

/* ==========================================
   9. Trust & Security Section
   ========================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px 24px;
    text-align: center;
}

.trust-shield-icon {
    font-size: 36px;
    color: var(--green-success);
    margin-bottom: 20px;
}

.trust-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   10. Free Trial Offer Section (★강조)
   ========================================== */
.offer-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.03) 100%);
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.offer-box h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.offer-box p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.offer-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.offer-feat-item {
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.offer-feat-item::before {
    content: '✓';
    color: var(--blue-glow);
    font-weight: 800;
}

/* ==========================================
   11. Pricing Section
   ========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 36px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.pricing-card.premium-tier {
    background: linear-gradient(185deg, rgba(255, 215, 0, 0.1) 0%, rgba(10, 8, 18, 0.85) 100%);
    border-color: rgba(255, 215, 0, 0.45);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
}

.pricing-card.premium-tier::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 10px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.premium-tier:hover {
    border-color: var(--blue-glow);
}

.tier-name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.tier-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 40px;
}

.tier-price {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.tier-price .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: white;
}

.tier-price .unit {
    font-size: 13px;
    color: var(--text-muted);
}

.tier-price .sub-info {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tier-features li {
    font-size: 13.5px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tier-features li::before {
    content: '✓';
    color: var(--blue-glow);
    font-weight: 700;
}

.btn-pricing-action {
    width: 100%;
    padding: 14px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-card.premium-tier .btn-pricing-action {
    background: var(--blue-accent);
    border: none;
    color: white;
}

.pricing-card.premium-tier .btn-pricing-action:hover {
    background: var(--blue-glow);
}

.pricing-card:not(.premium-tier) .btn-pricing-action {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-card:not(.premium-tier) .btn-pricing-action:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}

/* ==========================================
   12. Final CTA Section
   ========================================== */
.final-cta-container {
    text-align: center;
    padding: 80px 24px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-container h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta-container p {
    font-size: 17.5px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* ==========================================
   13. FAQ Section (Accordion)
   ========================================== */
.faq-accordion {
    max-width: 850px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 24px 30px;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-icon-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
    background: rgba(255, 215, 0, 0.03);
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(-135deg);
    border-color: var(--blue-glow);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-content {
    max-height: 300px;
}

.faq-content-inner {
    padding: 0 30px 24px 30px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* ==========================================
   📞 도입상담 시뮬레이터 팝업 모달
   ========================================== */
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none; /* JS를 통해 제어 */
    justify-content: center;
    align-items: center;
}

.consultation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* 청색 톤을 제거하고 순수 딥 블랙으로 변경 */
    backdrop-filter: blur(8px);
}

.consultation-modal-card {
    background: #111113; /* #0f132e 청색에서 세련된 딥 다크 차콜 블랙으로 수정 */
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.consultation-modal-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.consultation-modal-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 28px;
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue-accent);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit-consultation {
    background: var(--blue-accent);
    color: #000000;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.btn-submit-consultation:hover {
    background: var(--blue-glow);
}

/* ==========================================
   🎉 상담 신청 성공 알림 레이어
   ========================================== */
.alert-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: rgba(16, 185, 129, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
    
    /* 🚀 모바일 기기 하단바 노출이나 스크롤 시 삐져나오지 않도록 불투명도 및 포인터 이벤트 은닉 추가 */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease, visibility 0.3s ease;
}

.alert-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

/* ==========================================
   📱 모바일 반응형 대응 (B2B UI 최적화)
   ========================================== */
@media (max-width: 1024px) {
    .b2b-hero {
        padding-top: 100px;
    }
    .hero-title {
        font-size: 46px;
    }
    .loss-container, .report-preview-layout, .candidate-exp-layout, .brand-pillars-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .loss-container {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .b2b-section {
        padding: 80px 16px; /* 여백을 조금 더 컴팩트하게 줄여 스크롤 낭비 방지 */
    }
    .section-tag {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 14px;
    }
    .section-title {
        font-size: 24px; /* 32px -> 24px로 축소하여 모바일 화면 최적 가독성 확보 */
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .section-subtitle {
        font-size: 14px; /* 18px -> 14px로 축소 */
        line-height: 1.5;
    }
    .b2b-hero {
        padding: 100px 16px 40px 16px;
    }
    .hero-title {
        font-size: 28px; /* 36px -> 28px로 컴팩트하게 축소하여 가독성 강화 */
        line-height: 1.35;
        margin-bottom: 18px;
    }
    .hero-desc {
        font-size: 14.5px; /* 16px -> 14.5px로 축소 */
        line-height: 1.55;
    }
    .hero-ctas-sub {
        gap: 10px !important;
    }
    .btn-secondary-outline {
        font-size: 13.5px !important;
        padding: 12px 18px !important;
        white-space: nowrap !important;
    }
    
    /* 🎥 모바일 스크린 비율에 맞추어 그라데이션 높이를 300px로 세련되게 축소 */
    .b2b-hero::after {
        height: 300px;
    }

    /* 카드형 컴포넌트 폰트 미세 조정 */
    .problem-card {
        padding: 24px 20px;
    }
    .problem-card h4 {
        font-size: 16.5px;
    }
    .problem-card p {
        font-size: 13px;
    }
    .loss-text h3 {
        font-size: 22px;
        line-height: 1.3;
    }
    .loss-text p {
        font-size: 14px;
    }
    .loss-item .loss-title {
        font-size: 13.5px;
    }
    .flow-step h4 {
        font-size: 16px;
    }
    .flow-step p {
        font-size: 13px;
    }
    .preview-text-block h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    .preview-text-block p {
        font-size: 14px;
    }
    .benefit-card {
        padding: 30px 20px;
    }
    .benefit-card h4 {
        font-size: 17px;
    }
    .benefit-card p {
        font-size: 13px;
    }
    .usecase-card h4 {
        font-size: 15px;
    }
    .usecase-card p {
        font-size: 12.5px;
    }
    .candidate-exp-details h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    .candidate-exp-details p {
        font-size: 14px;
    }
    .exp-point-item span {
        font-size: 13px;
    }
    .trust-card h4 {
        font-size: 16px;
    }
    .trust-card p {
        font-size: 13px;
    }
    .offer-box h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    .offer-box p {
        font-size: 14px;
    }
    .offer-features {
        gap: 10px;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
    .offer-feat-item {
        font-size: 13px;
        padding: 8px 14px;
    }
    .pricing-grid {
        grid-template-columns: 1fr; /* 요금제 카드 1열 배치 */
        gap: 30px;
    }
    .pricing-card {
        padding: 30px 20px;
    }
    .tier-name {
        font-size: 20px;
    }
    .tier-price .amount {
        font-size: 32px;
    }
    .tier-features li {
        font-size: 13px;
    }
    .faq-trigger span {
        font-size: 15px; /* FAQ 제목 컴팩트화 */
    }
    .faq-content-inner {
        font-size: 13px;
    }
    .brand-pillars-layout {
        gap: 40px;
    }
    .pillars-text-block h3.section-title {
        font-size: 26px !important;
        line-height: 1.3;
    }
    .pillars-text-block p {
        font-size: 14px;
    }
    .pillar-item {
        padding: 14px 18px;
    }
    .pillar-num {
        font-size: 20px;
    }
    .pillar-desc h5 {
        font-size: 15px;
    }
    .pillar-desc p {
        font-size: 12.5px;
    }
    .final-cta-container h3 {
        font-size: 24px;
        line-height: 1.3;
    }
    .final-cta-container p {
        font-size: 14px;
    }

    .solution-flow {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .solution-flow::after {
        display: none; /* 가로 가이드선 제거 */
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .usecase-grid {
        grid-template-columns: 1fr;
    }
    .exp-points {
        grid-template-columns: 1fr;
    }

    /* 🚀 TriaView 3대 핵심 축 모바일 레이아웃 붕괴 교정 및 정렬 최적화 */
    .brand-pillars-layout {
        grid-template-columns: 1fr !important; /* 모바일에서 찌그러짐을 방지하기 위해 1열 강제 */
        gap: 32px;
        text-align: center;
    }
    .pillars-text-block h3.section-title {
        text-align: center !important;
    }
    .premium-triangle-img {
        max-width: 60% !important; /* 모바일 전용 아담한 로고 사이즈화 */
        margin: 0 auto 16px auto;
    }
}

/* 🔺 Brand Pillars Section (TriaView Core Pillars) */
.brand-pillars-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.pillars-visual-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-triangle-img {
    max-width: 90%;
    height: auto;
    max-height: 480px;
    filter: drop-shadow(0 15px 45px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 35px rgba(255, 215, 0, 0.12));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
}

.premium-triangle-img:hover {
    transform: translateY(-8px) rotate(1deg) scale(1.02);
    filter: drop-shadow(0 25px 55px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 45px rgba(255, 215, 0, 0.25));
}

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

.pillar-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 18px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pillar-item:hover {
    background: rgba(255, 215, 0, 0.04);
    border-color: rgba(255, 215, 0, 0.25);
    transform: translateX(8px);
}

.pillar-num {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.pillar-desc h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #ffffff;
}

.pillar-desc p {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.45;
}

/* 💻 태블릿/모바일 화면 반응형 미디어 쿼리 오버라이드 통합 정의 */
@media (max-width: 1024px) {
    /* 1024px 이하 태블릿 카드 2열 화 */
    .exp-modern-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .usecase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    /* 태블릿 화면에서 이미지 높이 세련되게 스케일 조정 */
    .premium-candidate-img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    /* 768px 이하 모바일 화면 리포트 이미지 수직 1열화 */
    .report-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 지원자 경험 미니 카드 수직 1열화 */
    .exp-modern-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* 채용 단계 적합 카드 수직 1열화 */
    .usecase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* 지원자 경험 목업 이미지 플렉스 수직 1열 및 유연 리사이징 (절대 안 잘림!) */
    .candidate-images-flex {
        flex-direction: column;
        gap: 24px;
    }
    .premium-candidate-img {
        height: auto;
        width: 100%;
        max-width: 320px;
    }
}

