/* --- 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;
}

/* --- 메인 인트로 비디오 영역 (전체 화면 배경) --- */
.full-screen-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; 
}

.full-screen-bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    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 제약을 오버라이드 */
body, html {
    height: auto !important;
    min-height: 100% !important;
    overflow-y: auto !important;
}

.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;
}

/* 랜딩 컨텐츠 전체 플로우 */
.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: rgba(6, 7, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px 30px 40px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.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;
    }
}