/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== 메인 배너 슬라이더 (카페24 스타일) ==================== */
.banner-slider-section {
    padding: 0;
    background: #f8fafc;
}

.banner-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: hidden;
}

.banner-track {
    position: relative;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-slide.banner-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.banner-slide.banner-dark {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

.banner-slide.banner-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #db2777 100%);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 48px 60px;
    color: white;
}

.banner-content.banner-center {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.banner-text {
    max-width: 420px;
}

.banner-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.banner-slide h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-content.banner-center h2 {
    font-size: 48px;
}

.banner-slide p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 28px;
}

.btn-white {
    background: white;
    color: #2563eb;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn-white-purple {
    background: white;
    color: #7c3aed;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-white-purple:hover {
    background: #f5f3ff;
    transform: translateY(-2px);
}

.btn-white-large {
    background: white;
    color: #2563eb;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-white-large:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* 배너 카드들 */
.banner-cards {
    display: flex;
    gap: 16px;
}

.banner-card {
    width: 200px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.banner-card:hover {
    transform: translateY(-8px);
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.card-overlay.purple {
    background: linear-gradient(transparent, rgba(124, 58, 237, 0.9));
}

.card-profile {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 8px;
}

.card-overlay strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.card-overlay p {
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
}

/* 배너 통계 */
.banner-stats-row {
    display: flex;
    gap: 48px;
    margin-top: 40px;
}

.banner-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
}

.stat-text {
    font-size: 14px;
    opacity: 0.8;
}

/* 배너 CTA 버튼들 */
.banner-cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

/* 배너 로고들 */
.banner-logos {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.8;
}

/* 인디케이터 */
.banner-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.indicator.active {
    background: #2563eb;
    width: 32px;
    border-radius: 6px;
}

/* 화살표 */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #1e293b;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s;
    z-index: 10;
}

.banner-arrow:hover {
    background: #f1f5f9;
    transform: translateY(-50%) scale(1.05);
}

.banner-prev {
    left: 32px;
}

.banner-next {
    right: 32px;
}

/* 반응형 */
@media (max-width: 1024px) {
    .banner-track {
        height: 520px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .banner-text {
        max-width: 100%;
        margin-bottom: 32px;
    }

    .banner-slide h2 {
        font-size: 32px;
    }

    .banner-content.banner-center h2 {
        font-size: 36px;
    }

    .banner-cards {
        gap: 12px;
    }

    .banner-card {
        width: 140px;
        height: 220px;
    }

    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .banner-prev {
        left: 16px;
    }

    .banner-next {
        right: 16px;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        padding: 24px 16px;
    }

    .banner-track {
        height: 480px;
        border-radius: 16px;
    }

    .banner-content {
        padding: 32px 24px;
    }

    .banner-slide h2 {
        font-size: 28px;
    }

    .banner-content.banner-center h2 {
        font-size: 30px;
    }

    .banner-slide p {
        font-size: 14px;
    }

    .banner-cards {
        display: none;
    }

    .banner-stats-row {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-num {
        font-size: 28px;
    }

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

    .banner-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .banner-arrow {
        display: none;
    }
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}

/* 컨테이너 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 */
header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.logo-check {
    color: #2563eb;
}

.logo-in {
    color: #f59e0b;
}

.logo-job {
    color: #ef4444;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-links a.nav-highlight {
    color: #2563eb;
    font-weight: 600;
}

/* 모바일 메뉴 열릴 때 스크롤 잠금 */
body.mobile-menu-open {
    overflow: hidden;
}

/* 햄버거 메뉴 버튼 - 데스크톱에서 숨김 */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 201;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #334155;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* 모바일 사람 아이콘 - 데스크톱에서 숨김 */
.mobile-user-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.mobile-user-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.mobile-user-logged {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

/* 모바일 메뉴 패널 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 200;
    padding: 20px;
    flex-direction: column;
    overflow-y: auto;
    animation: slideDown 0.3s ease;
}

.mobile-menu.open {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.mobile-nav a {
    display: block;
    padding: 16px 4px;
    color: #334155;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: #2563eb;
}

.mobile-menu-auth,
.mobile-menu-user {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 버튼 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #e2e8f0;
    color: #475569;
}

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

.btn-success {
    background: #22c55e;
    color: white;
}

.btn-success:hover {
    background: #16a34a;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

/* 히어로 섹션 */
.hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.hero-target {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtext {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-subtext .highlight-text {
    color: #fbbf24;
    font-weight: 600;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.stat-number.danger {
    color: #fbbf24;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

/* 히어로 통계 */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* 경고 섹션 */
.warning-section {
    background: #fef2f2;
    padding: 60px 0;
    border-top: 4px solid #ef4444;
}

.warning-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1);
    border: 1px solid #fecaca;
}

.warning-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.warning-content blockquote {
    font-size: 18px;
    line-height: 1.8;
    color: #1e293b;
    margin-bottom: 20px;
    font-style: italic;
}

.warning-content .danger {
    color: #dc2626;
    font-style: normal;
}

.warning-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar.warning {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* 후기 섹션 */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonial-card.featured {
    border: 2px solid #ef4444;
    background: #fff5f5;
    position: relative;
}

.testimonial-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.testimonial-content .danger {
    color: #dc2626;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

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

.testimonial-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.testimonial-content p {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-content strong {
    color: #2563eb;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info strong {
    display: block;
    color: #1e293b;
}

.author-info span {
    font-size: 13px;
    color: #64748b;
}

/* 듀얼 섹션 (사장님/알바생) */
.dual-section {
    padding: 100px 0;
}

.employer-section {
    background: #f8fafc;
}

.worker-section {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.dual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dual-content.reverse {
    direction: rtl;
}

.dual-content.reverse > * {
    direction: ltr;
}

.section-badge {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-badge.worker {
    background: #7c3aed;
}

.dual-text h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #1e293b;
}

.benefit-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefit-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 28px;
    height: 28px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-list strong {
    display: block;
    color: #1e293b;
    margin-bottom: 4px;
}

.benefit-list p {
    color: #64748b;
    font-size: 14px;
}

/* 미리보기 카드 */
.preview-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.preview-header {
    margin-bottom: 20px;
}

.preview-badge {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.preview-applicant {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.applicant-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.preview-applicant strong {
    display: block;
    color: #1e293b;
}

.preview-applicant p {
    font-size: 13px;
    color: #64748b;
}

.preview-recommend {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f0fdf4;
    border-radius: 12px;
    margin-bottom: 20px;
}

.recommend-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.recommend-badge.yes {
    background: #22c55e;
    color: white;
}

.recommend-text {
    color: #16a34a;
    font-weight: 500;
}

.preview-ratings {
    margin-bottom: 20px;
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.rating-row:last-child {
    border-bottom: none;
}

.rating-row span:first-child {
    color: #64748b;
    font-size: 14px;
}

.rating-stars {
    color: #fbbf24;
    letter-spacing: 2px;
}

.rating-row span:last-child {
    color: #1e293b;
    font-weight: 600;
}

.preview-comment {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.preview-comment p {
    color: #475569;
    font-size: 14px;
    font-style: italic;
}

/* 평판 카드 */
.reputation-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border: 2px solid #e9d5ff;
}

.rep-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rep-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.rep-info {
    flex: 1;
}

.rep-info strong {
    display: block;
    font-size: 18px;
    color: #1e293b;
}

.rep-info p {
    font-size: 13px;
    color: #64748b;
}

.rep-score {
    text-align: center;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
}

.score-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.score-label {
    font-size: 11px;
    opacity: 0.9;
}

.rep-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.rep-badge {
    background: #f3e8ff;
    color: #7c3aed;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.rep-history {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.history-item:last-child {
    border-bottom: none;
}

.history-place {
    font-weight: 600;
    color: #1e293b;
}

.history-period {
    font-size: 13px;
    color: #94a3b8;
}

.history-rating {
    color: #7c3aed;
    font-weight: 500;
    font-size: 13px;
}

.rep-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.rep-footer small {
    color: #94a3b8;
    font-size: 12px;
}

/* 이용 방법 */
.how-it-works-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.step-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 220px;
}

.step-card.highlight {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
}

.step-card.highlight h3,
.step-card.highlight p {
    color: white;
}

.step-card.highlight .step-number {
    background: #ef4444;
    color: white;
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #1e293b;
}

.step-card p {
    font-size: 13px;
    color: #64748b;
}

.step-arrow {
    font-size: 24px;
    color: #cbd5e1;
}

/* ==================== 서비스 한눈에 보기 (토스 스타일) ==================== */
.service-overview {
    padding: 100px 0 80px;
    background: #f9fafb;
}

.service-overview-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-overview-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #191f28;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.service-desc {
    font-size: 18px;
    color: #6b7684;
    font-weight: 400;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 36px 32px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.service-card-large h3 {
    color: white;
    font-size: 28px;
}

.service-card-large p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
}

.service-card-dark {
    grid-column: span 2;
    background: #191f28;
    color: white;
}

.service-card-dark h3 {
    color: white;
}

.service-card-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.service-card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #6b7684;
    line-height: 1.6;
}

/* 레퍼런스 체크 카드 비주얼 */
.service-card-visual {
    margin-top: 32px;
}

.visual-check-result {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.check-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.check-badge.recommend {
    background: #10b981;
    color: white;
}

.check-stars {
    font-size: 18px;
    color: #fbbf24;
    margin-bottom: 10px;
}

.check-stars span {
    color: white;
    font-weight: 700;
    margin-left: 8px;
}

.check-comment {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* 평판 카드 비주얼 */
.visual-reputation {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
}

.rep-mini-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.rep-mini-info {
    margin-bottom: 12px;
}

.rep-mini-info strong {
    display: block;
    color: white;
    font-size: 16px;
    margin-bottom: 4px;
}

.rep-mini-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.rep-mini-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.rep-mini-badges span {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* ==================== 폰 목업 데모 섹션 ==================== */
.phone-demo-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.phone-demo-header {
    text-align: center;
    margin-bottom: 64px;
}

.phone-demo-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #191f28;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.phone-demo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 왼쪽: 스텝 설명 */
.phone-demo-steps {
    flex: 1;
    max-width: 400px;
}

.phone-step {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    opacity: 0.5;
    border: 2px solid transparent;
}

.phone-step:hover {
    opacity: 0.8;
}

.phone-step.active {
    opacity: 1;
    background: white;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
}

.phone-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
}

.phone-step.active .phone-step-number {
    background: #2563eb;
    color: white;
}

.phone-step-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.phone-step-info p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.6;
}

/* 오른쪽: 폰 목업 */
.phone-mockup-wrapper {
    flex-shrink: 0;
}

.phone-mockup {
    position: relative;
    width: 340px;
    aspect-ratio: 1442 / 2250;
}

.phone-frame-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

.phone-screen {
    position: absolute;
    top: 4.5%;
    left: 19%;
    right: 19%;
    bottom: 4.5%;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    z-index: 1;
}

/* 폰 스크린 안의 텍스트 크기 고정 (폰이 커져도 글자는 그대로) */
.phone-screen-content {
    font-size: 12px;
}

/* 폰 스크린 내 스크롤바 숨김 */
.phone-screen-content::-webkit-scrollbar {
    display: none;
}

/* 폰 화면 콘텐츠 공통 */
.phone-screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease;
    pointer-events: none;
    overflow-y: auto;
    padding: 0 0 16px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.phone-screen-content.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* 상태바 */
.screen-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px 2px;
    font-size: 11px;
    font-weight: 600;
    color: #1a1a1a;
}

.screen-icons {
    font-size: 10px;
    letter-spacing: 2px;
}

/* 헤더바 */
.screen-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8px 8px;
    font-size: 14px;
    font-weight: 700;
    color: #191f28;
}

.screen-back {
    font-size: 24px;
    color: #2563eb;
    font-weight: 300;
}

/* 화면 1: 프로필 */
.screen-profile {
    text-align: center;
    padding: 10px 8px 8px;
}

.screen-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 8px;
}

.screen-name {
    font-size: 15px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 2px;
}

.screen-sub {
    font-size: 11px;
    color: #94a3b8;
}

.screen-info-list {
    padding: 4px 20px;
}

.screen-info-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 12px;
}

.info-label {
    color: #94a3b8;
}

.info-value {
    color: #334155;
    font-weight: 600;
}

.screen-cta-btn {
    display: block;
    width: calc(100% - 24px);
    margin: 10px auto 0;
    padding: 11px;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.screen-cta-btn.pulse-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
}

.screen-hint {
    text-align: center;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 10px;
    padding: 0 20px;
}

/* 화면 2: 평가 */
.screen-eval-notice {
    text-align: center;
    padding: 10px 8px 8px;
    background: #f0f9ff;
    margin: 0 6px;
    border-radius: 10px;
}

.eval-notice-icon {
    font-size: 22px;
    margin-bottom: 4px;
}

.screen-eval-notice p {
    font-size: 11px;
    color: #334155;
    line-height: 1.4;
}

.screen-rating-group {
    padding: 6px 20px;
}

.screen-rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 12px;
    color: #475569;
}

.screen-stars {
    color: #fbbf24;
    font-size: 12px;
    letter-spacing: 1px;
}

.screen-recommend-badge {
    background: #ecfdf5;
    color: #059669;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.screen-cta-btn.submit-btn {
    background: #10b981;
    color: white;
}

/* 화면 3: 결과 */
.screen-result-badge {
    text-align: center;
    padding: 12px 16px 10px;
}

.result-check-icon {
    font-size: 32px;
    margin-bottom: 6px;
}

.result-text {
    font-size: 16px;
    font-weight: 800;
    color: #059669;
    margin-bottom: 4px;
}

.result-score {
    font-size: 24px;
    font-weight: 800;
    color: #191f28;
}

.screen-result-detail {
    padding: 0 14px 4px;
}

/* 세로 배치: 레이블+점수 위, 바 아래 */
.result-row-v2 {
    margin-bottom: 8px;
}

.result-row-header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    margin-bottom: 3px;
}

.result-row-header span:first-child {
    color: #64748b;
    font-weight: 500;
}

.result-row-header span:last-child {
    color: #334155;
    font-weight: 700;
}

.result-bar {
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}

.result-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #10b981);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.screen-result-comment {
    margin: 4px 14px 0;
    background: #f8fafc;
    border-radius: 10px;
    padding: 8px 10px;
}

.comment-label {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 4px;
}

.screen-result-comment p {
    font-size: 11px;
    color: #334155;
    line-height: 1.4;
    font-style: italic;
}

.screen-cta-btn.hire-btn {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
}

/* 폰 목업 반응형 */
@media (max-width: 768px) {
    .phone-demo-section {
        padding: 60px 0 40px;
    }

    .phone-demo-header h2 {
        font-size: 28px;
    }

    .phone-demo-content {
        flex-direction: column;
        gap: 40px;
    }

    .phone-demo-steps {
        max-width: 100%;
        order: 2;
    }

    .phone-mockup-wrapper {
        order: 1;
    }

    .phone-mockup {
        width: 280px;
        margin: 0 auto;
    }

    .phone-screen {
        top: 9%;
        bottom: 9%;
        border-radius: 24px;
    }

    .phone-screen-content {
        font-size: 10px;
    }

    .screen-header-bar {
        padding: 24px 8px 4px;
        font-size: 12px;
    }

    .screen-profile {
        padding: 4px 8px 4px;
    }

    .screen-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .screen-name {
        font-size: 13px;
    }

    .screen-result-badge {
        padding: 6px 10px 4px;
    }

    .result-check-icon {
        font-size: 22px;
        margin-bottom: 2px;
    }

    .result-text {
        font-size: 12px;
    }

    .result-score {
        font-size: 20px;
    }

    .screen-cta-btn {
        padding: 8px;
        font-size: 11px;
        margin-top: 6px;
    }

    .screen-hint {
        font-size: 8px;
        padding: 2px 8px;
    }

    .screen-info-row {
        padding: 4px 8px;
    }

    .screen-eval-notice {
        padding: 6px 8px 4px;
        margin: 0 4px;
    }

    .screen-rating-item {
        padding: 3px 10px;
    }

    .result-row-v2 {
        margin-bottom: 5px;
    }

    .phone-step {
        padding: 16px;
    }

    .phone-step-info h4 {
        font-size: 16px;
    }

    .phone-step-info p {
        font-size: 13px;
    }
}

/* 서비스 카드 반응형 */
@media (max-width: 768px) {
    .service-overview {
        padding: 60px 0 40px;
    }

    .service-overview-header h2 {
        font-size: 28px;
    }

    .service-desc {
        font-size: 15px;
    }

    .service-card-grid {
        grid-template-columns: 1fr;
    }

    .service-card-large,
    .service-card-dark {
        grid-column: span 1;
        grid-row: span 1;
    }

    .service-card-large {
        padding: 36px 28px;
    }

    .service-card-large h3 {
        font-size: 24px;
    }
}

/* CTA 섹션 */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

.cta-buttons .btn-primary {
    background: white;
    color: #2563eb;
}

.cta-buttons .btn-primary:hover {
    background: #f1f5f9;
}

/* 특징 섹션 */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
}

/* 카드 */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 16px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
}

/* 폼 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* 별점 */
.rating {
    display: flex;
    gap: 4px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    cursor: pointer;
    font-size: 32px;
    color: #e2e8f0;
    transition: color 0.2s;
}

.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
    color: #fbbf24;
}

/* 배지 */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-pending {
    background: #fef3c7;
    color: #92400e;
}

.badge-completed {
    background: #d1fae5;
    color: #065f46;
}

.badge-rejected {
    background: #fee2e2;
    color: #991b1b;
}

/* 모달 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 모달 열릴 때 body 스크롤 막기 */
body.modal-open {
    overflow: hidden;
}

.modal {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-large {
    max-width: 750px;
    width: 90%;
    padding: 0;
    overflow: visible;
}

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

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #64748b;
}

/* 회원가입 모달 개선 */
.register-container {
    display: flex;
    min-height: 500px;
}

.register-benefits {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    color: white;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    flex-shrink: 0;
}

.benefits-content h2 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.benefits-subtitle {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.benefit-check {
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.benefits-list strong {
    color: #fbbf24;
}

.benefits-testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #fbbf24;
}

.benefits-testimonial p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 8px;
}

.benefits-testimonial span {
    font-size: 12px;
    opacity: 0.7;
}

/* 폼 영역 */
.register-form-area {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    flex: 1;
}

/* 단계 표시 */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.step-dot.active {
    background: #2563eb;
    color: white;
}

.step-dot.completed {
    background: #22c55e;
    color: white;
}

.step-line {
    width: 40px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 2px;
}

/* 폼 단계 */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 8px;
    text-align: center;
}

.step-desc {
    color: #64748b;
    text-align: center;
    margin-bottom: 32px;
}

/* 유형 선택 카드 */
.user-type-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.type-card {
    cursor: pointer;
}

.type-card input {
    display: none;
}

.type-card-content {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.type-card:hover .type-card-content {
    border-color: #2563eb;
    background: #f8fafc;
}

.type-card input:checked + .type-card-content {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.type-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.type-card-content strong {
    display: block;
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 6px;
}

.type-card-content p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 10px;
}

.type-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.type-tag.worker {
    background: #f3e8ff;
    color: #7c3aed;
}

/* 폼 버튼 */
.btn-full {
    width: 100%;
}

.form-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-buttons .btn {
    flex: 1;
}

.btn-success-gradient {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.btn-success-gradient:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

/* 입력 힌트 */
.input-hint {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
}

/* 비밀번호 강도 */
.password-strength {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.strength-fill.weak {
    background: #ef4444;
}

.strength-fill.medium {
    background: #f59e0b;
}

.strength-fill.strong {
    background: #22c55e;
}

.strength-text {
    font-size: 12px;
    min-width: 60px;
}

/* 요약 카드 */
.summary-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: #64748b;
}

.summary-row strong {
    color: #1e293b;
}

/* 동의 박스 */
.agreement-box {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #475569;
}

.checkbox-label input {
    margin-top: 3px;
}

.checkbox-label a {
    color: #2563eb;
}

/* 신뢰 배지 */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.trust-badges span {
    font-size: 12px;
    color: #64748b;
}

/* 로그인 링크 */
.login-link {
    text-align: center;
    margin-top: 24px;
    color: #64748b;
    font-size: 14px;
}

.login-link a {
    color: #2563eb;
    font-weight: 500;
}

/* 반응형: 회원가입 모달 */
@media (max-width: 900px) {
    .register-container {
        grid-template-columns: 1fr;
    }

    .register-benefits {
        display: none;
    }

    .modal-large {
        max-width: 500px;
    }

    .user-type-cards {
        grid-template-columns: 1fr;
    }
}

/* 알림 */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* 레퍼런스 체크 버튼 (핵심!) */
.reference-check-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.reference-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.reference-check-btn:active {
    transform: translateY(0);
}

/* 푸터 - 스타일은 아래에 정의됨 */

/* 반응형 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-subtext {
        font-size: 15px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .nav-links {
        display: none;
    }

    .header-content {
        position: relative;
        justify-content: center;
        padding: 12px 20px;
    }

    .hamburger-btn {
        display: flex;
        position: absolute;
        left: 16px;
    }

    .header-auth,
    .header-user {
        display: none !important;
    }

    .mobile-user-btn {
        display: flex;
        position: absolute;
        right: 16px;
    }

    .logo {
        font-size: 20px;
    }

    .warning-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .warning-content blockquote {
        font-size: 16px;
    }

    .warning-author {
        justify-content: center;
    }

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

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

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

    .dual-content.reverse {
        direction: ltr;
    }

    .dual-text {
        text-align: center;
    }

    .dual-text h2 {
        font-size: 28px;
    }

    .benefit-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .dual-text .btn {
        width: 100%;
    }

    .how-it-works-grid {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }
}

/* ==================== 페이지 공통 스타일 ==================== */
.page-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

/* 푸터 */
footer {
    background: #f8f9fa;
    color: #495057;
    padding: 0;
    margin-top: 80px;
    border-top: 1px solid #e9ecef;
}

footer a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #2563eb;
}

/* 푸터 상단 (공지사항, 고객센터, SNS) */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.6fr;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid #e9ecef;
}

.footer-top h4 {
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-top h4 .more-link {
    font-size: 13px;
    font-weight: 400;
    color: #868e96;
}

/* 공지사항 */
.notice-list {
    list-style: none;
}

.notice-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-list li a {
    color: #495057;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    margin-right: 16px;
}

.notice-list li span {
    color: #adb5bd;
    font-size: 13px;
    flex-shrink: 0;
}

/* 고객센터 */
.footer-cs .cs-phone {
    font-size: 32px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.footer-cs .cs-hours {
    margin-bottom: 16px;
}

.footer-cs .cs-hours p {
    font-size: 14px;
    color: #868e96;
    line-height: 1.6;
}

.footer-cs .cs-contact {
    font-size: 13px;
    color: #868e96;
    margin-bottom: 16px;
}

.footer-cs .cs-links {
    display: flex;
    gap: 16px;
}

.footer-cs .cs-links a {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

/* SNS 아이콘 */
.sns-icons {
    display: flex;
    gap: 12px;
}

.sns-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sns-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sns-icon svg {
    width: 22px;
    height: 22px;
}

.sns-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sns-youtube {
    background: #ff0000;
}

.sns-blog {
    background: #03c75a;
}

/* 푸터 네비게이션 */
.footer-nav {
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.footer-nav a {
    font-size: 13px;
    color: #495057;
}

.footer-nav a.highlight {
    font-weight: 700;
    color: #212529;
}

.footer-nav .divider {
    margin: 0 12px;
    color: #dee2e6;
}

/* 푸터 하단 */
.footer-bottom {
    padding: 32px 0;
    text-align: center;
}

.footer-bottom .company-info {
    margin-bottom: 16px;
}

.footer-bottom .company-name {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.footer-bottom .company-info p {
    font-size: 12px;
    color: #adb5bd;
    line-height: 1.8;
}

.footer-bottom .copyright {
    font-size: 12px;
    color: #adb5bd;
    margin-top: 16px;
}

/* 푸터 반응형 */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0;
    }

    .footer-nav {
        padding: 16px 0;
    }

    .footer-nav a {
        display: inline-block;
        margin: 4px 8px;
    }

    .footer-nav .divider {
        display: none;
    }

    .sns-icons {
        justify-content: flex-start;
    }
}

/* ==================== 채용공고 목록 페이지 ==================== */
.jobs-header {
    margin-bottom: 32px;
}

.jobs-header h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.jobs-header p {
    color: #64748b;
    margin-bottom: 24px;
}

.search-filter-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    flex: 1;
    gap: 8px;
    min-width: 300px;
}

.search-box input {
    flex: 1;
}

.filter-options {
    display: flex;
    gap: 12px;
}

.filter-options select {
    min-width: 140px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.job-type-badge {
    background: #eff6ff;
    color: #2563eb;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.urgent-badge {
    background: #fef2f2;
    color: #ef4444;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.reference-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.reputation-badge {
    background: #f3e8ff;
    color: #7c3aed;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.deadline-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.deadline-badge.deadline-urgent {
    background: #fef2f2;
    color: #dc2626;
    animation: pulse 1.5s ease-in-out infinite;
}

.deadline-badge.deadline-soon {
    background: #fef3c7;
    color: #d97706;
}

.deadline-badge.deadline-normal {
    background: #f1f5f9;
    color: #64748b;
}

.deadline-badge.deadline-ongoing {
    background: #dcfce7;
    color: #16a34a;
}

.deadline-badge.deadline-closed {
    background: #f1f5f9;
    color: #94a3b8;
}

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

.job-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.job-company {
    color: #64748b;
    font-size: 14px;
}

.job-company-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.employer-rating {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.job-wage-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.job-wage-highlight .wage-amount {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
}

.wage-bonus {
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.job-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #475569;
}

.detail-icon {
    font-size: 14px;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

/* 로딩 및 빈 상태 */
.loading-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #64748b;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-state h3 {
    color: #1e293b;
    margin-bottom: 8px;
}

.error-message {
    text-align: center;
    padding: 40px;
    color: #ef4444;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.page-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* ==================== 채용공고 상세 페이지 ==================== */
.job-detail-header {
    margin-bottom: 32px;
}

.back-link {
    display: inline-block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 14px;
}

.back-link:hover {
    color: #2563eb;
}

.job-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.job-detail-header h1 {
    font-size: 28px;
    margin-bottom: 8px;
}

.company-name {
    color: #64748b;
    font-size: 16px;
}

.job-detail-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
}

.job-detail-main {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.detail-section {
    margin-bottom: 32px;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 13px;
    color: #64748b;
}

.detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

.detail-value.highlight {
    color: #2563eb;
    font-size: 18px;
}

.description-content {
    line-height: 1.8;
    color: #475569;
}

.job-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.apply-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.apply-card-header {
    text-align: center;
    margin-bottom: 16px;
}

.wage-label {
    display: block;
    font-size: 13px;
    color: #64748b;
}

.wage-amount {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

.apply-card-body {
    text-align: center;
    margin-bottom: 20px;
}

.deadline-info, .posted-info {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 4px;
}

.apply-notice {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 12px;
}

.company-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.company-card h4 {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.business-type {
    color: #64748b;
    font-size: 14px;
}

/* ==================== 대시보드 페이지 ==================== */
.dashboard-page {
    background: #f8fafc;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.profile-info h1 {
    font-size: 24px;
    margin-bottom: 4px;
}

.user-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.user-type-badge.employer {
    background: #dbeafe;
    color: #1d4ed8;
}

.user-type-badge.worker {
    background: #dcfce7;
    color: #16a34a;
}

.dashboard-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    transition: all 0.2s;
}

.tab-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.tab-btn.active {
    background: #2563eb;
    color: white;
}

.dashboard-tab-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    min-height: 400px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* 내 채용공고 카드 */
.my-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.my-job-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.2s;
}

.my-job-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37,99,235,0.1);
}

.job-card-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.job-card-status.active {
    background: #dcfce7;
    color: #16a34a;
}

.job-card-status.inactive {
    background: #f1f5f9;
    color: #64748b;
}

.job-card-content {
    flex: 1;
}

.job-card-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.job-card-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 4px;
}

.job-card-meta .badge {
    background: #eff6ff;
    color: #2563eb;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.job-card-date {
    font-size: 13px;
    color: #94a3b8;
}

.job-card-actions {
    display: flex;
    gap: 8px;
}

/* 지원자 카드 */
.applicants-filter {
    margin-bottom: 20px;
}

.applicants-filter select {
    max-width: 200px;
}

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

.applicant-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.applicant-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.applicant-avatar {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #64748b;
}

.applicant-details h4 {
    margin-bottom: 4px;
}

.applicant-job, .applicant-date {
    font-size: 13px;
    color: #64748b;
}

.applicant-status {
    margin-right: 16px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.pending {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.reviewing {
    background: #dbeafe;
    color: #2563eb;
}

.status-badge.reference-checking {
    background: #e0e7ff;
    color: #4f46e5;
}

.status-badge.accepted {
    background: #dcfce7;
    color: #16a34a;
}

.status-badge.rejected {
    background: #fee2e2;
    color: #dc2626;
}

.applicant-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.status-select {
    max-width: 140px;
    padding: 6px 10px;
    font-size: 13px;
}

/* 레퍼런스 체크 카드 */
.reference-checks-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reference-check-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.check-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.check-info h4 {
    margin-bottom: 4px;
}

.check-info p {
    font-size: 13px;
    color: #64748b;
}

.reference-result {
    background: #f8fafc;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.result-summary {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.recommend-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.recommend-badge.positive {
    background: #dcfce7;
    color: #16a34a;
}

.recommend-badge.negative {
    background: #fee2e2;
    color: #dc2626;
}

.overall-rating {
    color: #f59e0b;
    font-weight: 600;
}

.result-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.result-comment {
    font-size: 14px;
    color: #475569;
    margin-bottom: 8px;
}

.check-footer {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #94a3b8;
}

/* 내 지원현황 카드 */
.applications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.my-application-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.application-status {
    width: 140px;
}

.application-content {
    flex: 1;
}

.application-content h3 {
    margin-bottom: 4px;
}

.application-content .company-name {
    color: #64748b;
    margin-bottom: 8px;
}

.application-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #94a3b8;
}

.application-actions {
    display: flex;
    gap: 8px;
}

/* 근무이력 */
.work-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.work-history-header p {
    color: #64748b;
    font-size: 14px;
}

.work-history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.work-history-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    position: relative;
}

.work-history-card.platform-verified {
    border-color: #22c55e;
    background: #f0fdf4;
}

.verified-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: #22c55e;
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

.verified-badge.small {
    position: static;
    font-size: 10px;
    padding: 2px 6px;
}

.history-content h4 {
    margin-bottom: 4px;
}

.history-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.history-period {
    font-size: 14px;
    color: #475569;
}

.history-employer {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

.history-actions {
    display: flex;
    gap: 8px;
}

/* 모달 크기 조정 - 대시보드용 */
.modal-dashboard {
    max-width: 700px;
    width: 95%;
}

/* 폼 행 */
.form-row {
    margin-bottom: 16px;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* 지원자 상세 모달 */
.applicant-detail {
    padding: 20px 0;
}

.applicant-detail .detail-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.applicant-detail .detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 13px;
    color: #64748b;
}

.info-value {
    font-weight: 500;
}

.cover-letter {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    line-height: 1.6;
}

.work-history-list.compact .work-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 8px;
}

.empty-text {
    color: #94a3b8;
    font-style: italic;
}

/* 레퍼런스 체크 요청 모달 */
.work-history-select-list {
    max-height: 300px;
    overflow-y: auto;
}

.work-history-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.work-history-option:hover {
    border-color: #2563eb;
}

.work-history-option input[type="radio"] {
    width: 20px;
    height: 20px;
}

.option-content {
    flex: 1;
}

.option-content strong {
    display: block;
    margin-bottom: 4px;
}

.option-content span {
    font-size: 13px;
    color: #64748b;
}

.has-contact {
    color: #22c55e !important;
}

.no-contact {
    color: #ef4444 !important;
}

.reference-contact-info {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
}

.reference-contact-info h4 {
    margin-bottom: 8px;
    font-size: 14px;
}

.reference-contact-info .warning {
    color: #ef4444;
}

.loading-text {
    color: #64748b;
    text-align: center;
    padding: 20px;
}

/* 버튼 추가 스타일 */
.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-outline {
    background: white;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.btn-outline:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.btn-danger-outline {
    background: white;
    border: 1px solid #fecaca;
    color: #ef4444;
}

.btn-danger-outline:hover {
    background: #fef2f2;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* 헤더 사용자 영역 */
.header-user {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* 반응형 */
@media (max-width: 1024px) {
    .job-detail-content {
        grid-template-columns: 1fr;
    }

    .apply-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .search-filter-bar {
        flex-direction: column;
    }

    .search-box {
        min-width: 100%;
    }

    .filter-options {
        flex-wrap: wrap;
    }

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

    .dashboard-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .dashboard-tabs {
        flex-wrap: wrap;
    }

    .my-job-card,
    .applicant-card,
    .my-application-card {
        flex-direction: column;
        align-items: stretch;
    }

    .job-card-actions,
    .applicant-actions,
    .application-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .detail-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

/* ==================== 채용공고 등급 시스템 ==================== */

/* 프리미엄 섹션 */
.premium-jobs-section {
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    border: 2px solid #f59e0b;
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #92400e;
    margin: 0;
}

.premium-label {
    background: #f59e0b;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.premium-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

/* 프리미엄 카드 */
.job-card.tier-premium {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #f59e0b;
    position: relative;
    overflow: hidden;
}

.job-card.tier-premium:hover {
    border-color: #d97706;
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
}

.premium-ribbon {
    position: absolute;
    top: 12px;
    right: -35px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 4px 40px;
    font-size: 10px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.job-card.tier-premium .job-title {
    color: #92400e;
}

.premium-rating {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: white !important;
}

.premium-wage {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
}

.premium-wage .wage-amount {
    color: #92400e !important;
}

.premium-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reference-unlimited {
    background: #dcfce7;
    color: #16a34a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* 스탠다드 카드 */
.job-card.tier-standard {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    position: relative;
}

.job-card.tier-standard:hover {
    border-color: #0284c7;
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.2);
}

.standard-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.job-card.tier-standard .job-wage-highlight {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.job-card.tier-standard .job-wage-highlight .wage-amount {
    color: #0369a1;
}

/* 베이직 카드 (기본) */
.job-card.tier-basic {
    background: white;
    border: 1px solid #e2e8f0;
}

/* 등급 선택 UI (채용공고 등록 시) */
.tier-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.tier-option {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tier-option:hover {
    border-color: #2563eb;
}

.tier-option.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

.tier-option.premium-option {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.tier-option.premium-option.selected {
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.tier-option.standard-option {
    border-color: #0ea5e9;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.tier-option.standard-option.selected {
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tier-name {
    font-size: 18px;
    font-weight: 700;
}

.tier-price {
    font-size: 16px;
    font-weight: 600;
    color: #2563eb;
}

.tier-price.free {
    color: #16a34a;
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
}

.tier-benefits li::before {
    content: "✓";
    color: #16a34a;
    font-weight: 700;
}

.tier-benefits li.disabled {
    color: #94a3b8;
    text-decoration: line-through;
}

.tier-benefits li.disabled::before {
    content: "✗";
    color: #94a3b8;
}

.tier-recommended {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

/* ==================== 스탠다드 섹션 ==================== */
.standard-jobs-section {
    margin-bottom: 40px;
}

.standard-title {
    color: #0369a1;
}

.reference-quota {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* ==================== 베이직(일반) 공고 리스트 스타일 ==================== */
.basic-jobs-section {
    margin-bottom: 40px;
}

.basic-title {
    color: #64748b;
}

.basic-jobs-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.basic-list-header {
    display: grid;
    grid-template-columns: 80px 1fr 120px 100px 100px 90px 80px;
    gap: 12px;
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.basic-list-row {
    display: grid;
    grid-template-columns: 80px 1fr 120px 100px 100px 90px 80px;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.15s;
    align-items: center;
    font-size: 14px;
}

.basic-list-row:last-child {
    border-bottom: none;
}

.basic-list-row:hover {
    background: #f8fafc;
}

.job-type-badge-sm {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.basic-job-title {
    font-weight: 500;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.col-company {
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.col-wage .wage-text {
    font-weight: 600;
    color: #2563eb;
}

.col-location {
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.deadline-text {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
}

.deadline-text.deadline-urgent {
    background: #fef2f2;
    color: #dc2626;
}

.deadline-text.deadline-soon {
    background: #fef3c7;
    color: #d97706;
}

.deadline-text.deadline-normal {
    color: #64748b;
}

.deadline-text.deadline-ongoing {
    background: #dcfce7;
    color: #16a34a;
}

.deadline-text.deadline-closed {
    color: #94a3b8;
    text-decoration: line-through;
}

.col-date {
    color: #94a3b8;
    font-size: 13px;
}

/* 반응형 */
@media (max-width: 1024px) {
    .basic-list-header,
    .basic-list-row {
        grid-template-columns: 70px 1fr 100px 80px 80px;
    }

    .col-deadline,
    .col-date {
        display: none;
    }
}

@media (max-width: 768px) {
    .premium-jobs-grid {
        grid-template-columns: 1fr;
    }

    .tier-selection {
        grid-template-columns: 1fr;
    }

    .premium-ribbon {
        font-size: 8px;
        padding: 2px 30px;
        right: -30px;
    }

    .basic-list-header {
        display: none;
    }

    .basic-list-row {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        align-items: flex-start;
    }

    .basic-list-row .col-status {
        order: 1;
    }

    .basic-list-row .col-title {
        order: 2;
        width: 100%;
    }

    .basic-list-row .col-company {
        order: 3;
    }

    .basic-list-row .col-wage {
        order: 4;
    }

    .basic-list-row .col-location,
    .basic-list-row .col-deadline,
    .basic-list-row .col-date {
        display: inline-block;
        font-size: 12px;
    }
}
