@charset "utf-8";
@import url("fonts.css");

:root {
    --accent: #000;
    --muted: #6b7280;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.06);
    --max-width: 1280px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Pretendard", sans-serif !important;
    color: #111;
    margin: 0px;
}

a {
    color: #000;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Pretendard", sans-serif;
}

.hero-content {
    height: 860px;
    background-image: url("../img/main/main_img.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.headline {
    margin: 150px auto;
    display: block;
    width: 1280px;
}

.headline h1 {
    color: #fff;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 10px 0px;
}

.sub {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 30;
}

.slider {
    width: 100%;
    height: 80px;
    overflow: hidden;
    padding: 20px 0;
    background: #fff;
}

.slider-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 22s linear infinite;
}

.slider img {
    height: 40px;
    /* 로고 높이 조절 */
    margin: 0 20px;
    object-fit: contain;
    filter: grayscale(0%);
    /* 필요시 100% 주면 흑백 */
}

@media (max-width: 900px) {
    .hero-content {
        width: 100%;
        background-size: cover;
        height: auto;
        padding: 20px;
    }

    .headline {
        display: block;
        width: 100%;
    }

    .headline h1 {
        font-size: 30px;
    }

    .sub {
        font-size: 30px;
    }

    .slider {
        padding: 0px;
        height: 50px;
    }
}

/* ---- 애니메이션 (오른쪽→왼쪽 이동) ---- */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.section,
.tab-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 0px;
}

.section.gray,
.tab-section.gray {
    background-color: #f9f9fb;
}

.section.black {
    background-color: #1a1b1e;
}

.section.gra-blue {
    background: linear-gradient(180deg, #a6ccf7, #dcebfc) !important;
}

.section.gra-sky {
    background: linear-gradient(180deg, #dcebfc, #ffffff) !important;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.wrap.cert {
    background: url(../../assets/img/main/security.png) no-repeat;
    background-position: right;
}

.wrap.cta {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section h2,
.tab-section h1 {
    font-size: 40px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #111;
}

.section.black h2 {
    color: #fff;
}

.section p {
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.5;
    color: #333;
}

.section.black p {
    color: #fff;
}

@media (max-width: 900px) {

    .section,
    .tab-section {
        max-width: 100%;
        padding: 40px 15px;
        display: block;
    }

    .wrap {
        max-width: 100%;
    }

    .section h2,
    .tab-section h1 {
        font-size: 22px;
    }

    .section p {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# info
--------------------------------------------------------------*/

.card-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    border-radius: 20px;
    padding: 28px;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}

.card.light {
    background: #f2f6ff;
}

.card.dark {
    background: #e2ebff;
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card p {
    font-size: 18px;
    color: #333;
    min-height: 85px;
}

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
    .card-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .card-list {
        grid-template-columns: 1fr;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p {
        font-size: 16px;
    }

    .info-img img {
        width: 40%;
    }
}

/* ===== 블루 섹션 ===== */
.highlight {
    background: #428dfc;
    color: #fff;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.highlight-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.highlight h3 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 8px;
}

.highlight h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    margin-top: 0px;
}

.highlight p {
    min-width: 800px;
    font-size: 24px;
    opacity: 0.9;
}

.highlight::after {
    content: "The Perfect Fit for your HR";
    position: absolute;
    bottom: -20px;
    left: 0px;
    right: 0px;
    font-size: 105px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    max-width: 1280px;
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .highlight {
        padding: 60px 15px;
    }

    .highlight h3 {
        font-size: 28px;
    }

    .highlight h2 {
        font-size: 26px;
        letter-spacing: -0.5px;
    }

    .highlight p {
        font-size: 20px;
    }

    .highlight::after {
        font-size: 30px;
        bottom: 0px;
        color: rgba(255, 255, 255, 0.06);
    }
}

.highlight-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.text-area {
    max-width: 600px;
}

.btn-area {
    flex-shrink: 0;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .highlight-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-area {
        margin-top: 24px;
    }

    .highlight p {
        min-width: 0;
        width: 100%;
        word-break: keep-all;
    }
}

/*--------------------------------------------------------------
# content
--------------------------------------------------------------*/


.label {
    color: #4f7cff;
    font-weight: 700;
    font-size: 22px;
}

/* 탭 */
.tabs {
    display: flex;
    gap: 25px;
    font-size: 22px;
    margin-bottom: 30px;
}

.tabs div {
    cursor: pointer;
    opacity: 0.4;
    font-weight: 600;
    /*transition: 0.2s;*/
}

.tabs .active {
    opacity: 1;
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
}

/* 콘텐츠 공통 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

@media (max-width: 900px) {
    .label {
        font-size: 18px;
    }

    .tabs {
        gap: 18px;
        font-size: 20px;
        margin-bottom: 20px;
    }
}

/* 공통 UI 박스 */
.section-box {
    background: #eef5ff;
    border-radius: 20px;
    height: 460px;
    overflow: hidden;
}

.section-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    word-break: keep-all;
}

.section-img img {
    position: relative;
}

.more-btn {
    display: block;
    width: 200px;
    height: 60px;
    text-align: center;
    margin: 50px auto 0;
    padding: 18px 17px;
    color: #111;
    border: 1px solid #cccccc;
    border-radius: 10px;
    background: #fff;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.more-btn span {
    margin-left: 10px;
    vertical-align: middle;
}

.more-btn:hover {
    color: #fff;
    background: #428dfc;
    border: none;
}

@media (max-width: 900px) {
    .section-box {
        height: 100%;
    }

    .section-grid {
        display: block;
        padding: 15px 15px 0px 15px;
    }

    .section-title {
        font-size: 16px;
    }

    .section-img img {
        width: 100%;
        height: auto;
    }

    .more-btn {
        width: 160px;
        height: 50px;
        margin: 30px auto 0px;
        font-size: 16px;
        padding: 14px;
    }
}

/*--------------------------------------------------------------
# plan
--------------------------------------------------------------*/

.plan-wrap {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 60px 0px;
    flex-wrap: wrap;
}

.plan-box {
    width: 410px;
    height: 360px;
    background: #333640;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    padding: 30px;
}

.plan-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.plan-box img {
    position: relative;
}

.plan-title h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-align: left;
}

.plan-title h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    text-align: left;
}

.plan-desc {
    font-size: 20px;
    color: #fff;
    line-height: 1.4;
    text-align: left;
}

.plan-desc i {
    margin-right: 10px;
    font-size: 20px;
}

.text-lightyellow {
    color: #f5ff87 !important;
}

.text-lightgreen {
    color: #87ffb4 !important;
}

.text-green {
    color: #14ff72 !important;
}

.text-lightblue {
    color: #63b7ff !important;
}

@media (max-width: 900px) {
    .plan-box {
        padding: 20px;
        height: 300px;
    }

    .plan-title h2 {
        font-size: 18px;
    }

    .plan-title h1 {
        font-size: 24px;
    }

    .plan-box img {
        width: 45%;
        right: -53%;
        bottom: 50%;
    }

    .plan-desc {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# 보안
--------------------------------------------------------------*/

.cert-wrap {
    display: flex;
    justify-content: center;
    gap: 45px;
    padding: 60px 0px;
    flex-wrap: wrap;
}

.cert-box {
    width: 220px;
    height: 200px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    padding: 20px;
}

.cert-box img {
    margin-bottom: 30px;
}

.cert-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.cert-box .icon {
    font-size: 38px;
    opacity: 0.9;
    margin-bottom: 12px;
    font-weight: 700;
}

.cert-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cert-desc {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .wrap.cert {
        background-position: center;
    }

    .cert-wrap {
        gap: 15px;
        padding: 0px;
    }

    .cert-box {
        width: 160px;
        height: 160px;
        background: #fff;
        padding: 15px;
    }

    .cert-box img {
        margin-bottom: 15px;
    }

    .cert-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .cert-desc {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    line-height: 1.35;
    white-space: pre-line;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.cta-btn {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    border: 1px solid transparent;
}

.cta-btn.primary {
    background: #000;
    color: #fff;
}

.cta-btn.primary:hover {
    background: #222;
}

.cta-btn.secondary {
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
}

.cta-btn.secondary:hover {
    background: #f5f5f5;
}

/* 반응형 */
@media (max-width: 900px) {
    .wrap.cta {
        display: block;
    }

    .cta-title {
        font-size: 22px;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-btn {
        font-size: 14px;
        padding: 15px;
    }
}