/* Recruit Environment Page Styles */

/* Common Elements */
.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

/* Page Hero */
.page-hero-recruit {
    background: linear-gradient(135deg, #FEE603 0%, #ffa726 100%);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-recruit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.page-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #000;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Data Overview Section */
.data-overview-section {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(254, 230, 3, 0.03) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(255, 167, 38, 0.05) 0%, transparent 50%),
        #fff;
    position: relative;
    overflow: hidden;
}

.data-overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(254, 230, 3, 0.02) 100px, rgba(254, 230, 3, 0.02) 200px);
    pointer-events: none;
}

.data-overview-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(254, 230, 3, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.data-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.data-description {
    font-size: 1.2rem;
    line-height: 2;
    color: #333;
    margin: 0;
}

.data-stats {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 50px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 230, 3, 0.05), rgba(255, 167, 38, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 70px rgba(254, 230, 3, 0.25);
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(254, 230, 3, 0.3));
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Evaluation System Section */
.evaluation-system-section {
    padding: 120px 0;
    background:
        linear-gradient(to right, transparent 0%, rgba(254, 230, 3, 0.05) 50%, transparent 100%),
        #fff;
    position: relative;
}

.evaluation-visual {
    max-width: 1000px;
    margin: 0 auto;
}

.evaluation-diagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.eval-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 60px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.eval-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 230, 3, 0.05), rgba(255, 167, 38, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.eval-item:hover::before {
    opacity: 1;
}

.eval-item:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 70px rgba(254, 230, 3, 0.25);
}

.eval-icon {
    display: none;
}

.eval-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 1;
}

.evaluation-image-section {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.evaluation-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.evaluation-image-section:hover .evaluation-image {
    transform: scale(1.05);
}

.eval-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
}

.eval-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(254, 230, 3, 0.02) 50px, rgba(254, 230, 3, 0.02) 100px),
        linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(254, 230, 3, 0.1), transparent);
    pointer-events: none;
}

.benefits-image-hero {
    max-width: 1200px;
    margin: 0 auto 80px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.benefits-hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.benefits-image-hero:hover .benefits-hero-image {
    transform: scale(1.05);
}

.events-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.events-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin: 0 0 50px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

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

.event-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.event-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FEE603, #ffa726);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.event-card:hover::after {
    transform: scaleX(1);
}

.event-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(254, 230, 3, 0.25);
}

.event-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(254, 230, 3, 0.3));
}

.event-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px;
}

.event-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Survey Section */
.survey-section {
    margin-top: 80px;
}

.data-section-title {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin: 0 0 30px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.survey-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #666;
    text-align: center;
    margin: 0 0 60px;
}

.survey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.survey-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.survey-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 230, 3, 0.05), rgba(255, 167, 38, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.survey-item:hover::before {
    opacity: 1;
}

.survey-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(254, 230, 3, 0.25);
}

.survey-question-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 30px;
    font-family: 'Oswald', sans-serif;
    position: relative;
    z-index: 1;
}

.donut-container {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto 30px;
}

.donut-chart {
    width: 100%;
    height: 100%;
}

.donut-segment {
    transition: all 0.3s ease;
}

.donut-segment:hover {
    opacity: 0.8;
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-label {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FEE603, #ffa726);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
}

.stat-year {
    font-size: 0.7rem;
    font-weight: 400;
}

.unit {
    font-size: 2rem;
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .page-hero-recruit {
        padding: 150px 20px 80px;
    }

    .page-title {
        font-size: 4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-card {
        padding: 40px 25px;
    }

    .stat-icon {
        font-size: 3.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .survey-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .survey-item {
        padding: 40px 35px;
    }

    .donut-container {
        max-width: 220px;
    }

    .donut-label {
        font-size: 1.1rem;
    }

    .evaluation-diagram {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-hero-recruit {
        padding: 120px 20px 60px;
    }

    .page-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .data-overview-section,
    .evaluation-system-section,
    .benefits-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .data-description {
        font-size: 0.85rem;
        line-height: 1.9;
    }

    .data-section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

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

    .stat-card {
        padding: 30px 15px;
    }

    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .survey-section {
        margin-top: 50px;
    }

    .survey-description {
        font-size: 0.85rem;
        line-height: 1.9;
        margin-bottom: 40px;
    }

    .survey-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .survey-item {
        padding: 35px 25px;
    }

    .survey-question-title {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .donut-container {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .donut-label {
        font-size: 0.9rem;
    }

    .legend-item {
        font-size: 0.85rem;
        gap: 8px;
    }

    .legend-color {
        width: 16px;
        height: 16px;
    }

    .evaluation-diagram {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .eval-item {
        padding: 35px 25px;
    }

    .eval-icon {
        font-size: 3rem;
    }

    .eval-number {
        font-size: 2rem;
    }

    .eval-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .eval-description {
        font-size: 0.85rem;
    }

    .evaluation-image-section {
        margin-top: 40px;
        border-radius: 15px;
    }

    .benefits-image-hero {
        margin-bottom: 50px;
        border-radius: 15px;
    }

    .events-title {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .event-card {
        padding: 35px 25px;
    }

    .event-icon {
        font-size: 3rem;
    }

    .event-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .event-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}