@charset "utf-8";

/* =========================
   MAIN COMMON
========================= */

.jk-main{
    background:#f8fafc;
    color:#111;
}

.jk-main section{
    position:relative;
}

.jk-main .jk-inner{
    max-width:1200px;
}

/* =========================
   HERO
========================= */

.jk-hero{
    min-height:430px;
    padding:80px 6%;
    background:
        linear-gradient(90deg, rgba(4,23,42,.92) 0%, rgba(4,23,42,.78) 48%, rgba(4,23,42,.42) 100%),
        url('/img/jk_main_bg.jpg') center/cover no-repeat;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.jk-hero-text{
    max-width:660px;
}

.jk-hero-text p{
    font-size:18px;
    color:#facc15;
    margin-bottom:12px;
    font-weight:700;
}

.jk-hero-text h1{
    font-size:48px;
    line-height:1.28;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.jk-hero-text span{
    display:block;
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.9);
}

.jk-hero-btns{
    display:flex;
    gap:12px;
    margin-top:28px;
}

.jk-hero-btns a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    height:48px;
    padding:0 22px;
    border-radius:999px;
    background:#facc15;
    color:#111;
    font-weight:800;
}

.jk-hero-btns a:last-child{
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.35);
    color:#fff;
}

.jk-countdown{
    width:280px;
    padding:32px 28px;
    background:rgba(15,23,42,.88);
    border:1px solid rgba(255,255,255,.16);
    border-radius:22px;
    text-align:center;
    box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.jk-countdown p{
    font-size:16px;
    margin-bottom:10px;
}

.jk-countdown strong{
    display:block;
    font-size:58px;
    color:#facc15;
    line-height:1.1;
}

.jk-countdown span{
    display:block;
    margin-top:10px;
    font-size:16px;
    color:#e5e7eb;
}

/* =========================
   AD BANNER
========================= */

.jk-ad-banner{
    max-width:1200px;
    margin:36px auto;
    padding:34px 24px;
    border-radius:22px;
    text-align:center;
    background:linear-gradient(135deg, #0f172a, #1e293b, #7c3aed);
    color:#fff;
    box-shadow:0 12px 34px rgba(15,23,42,.12);
}

.jk-ad-banner strong{
    display:block;
    font-size:24px;
    margin-bottom:8px;
}

.jk-ad-banner p{
    font-size:15px;
    color:rgba(255,255,255,.84);
}

/* =========================
   TOP CARDS
========================= */

.jk-card-grid{
    max-width:1200px;
    margin:0 auto 56px;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.jk-card{
    min-height:320px;
    padding:28px 22px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 8px 24px rgba(15,23,42,.08);
    text-align:center;
    display:flex;
    flex-direction:column;
    transition:.25s;
}

.jk-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 38px rgba(15,23,42,.13);
}

.jk-card h3{
    font-size:19px;
    margin-bottom:18px;
}

.jk-card p{
    font-size:14px;
    color:#555;
    line-height:1.7;
    margin:10px 0;
}

.jk-card ul{
    margin:12px 0 18px;
    font-size:14px;
    color:#333;
    line-height:1.9;
}

.jk-card a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:42px;
    padding:0 22px;
    margin:18px auto 0;
    border:1px solid #ddd;
    border-radius:999px;
    color:#111;
    font-size:14px;
    font-weight:700;
}

.jk-card a{
    margin-top:auto;
}

.jk-card.line{
    background:linear-gradient(135deg, #16a34a, #059669);
    color:#fff;
}

.jk-card.line p{
    color:#fff;
}

.jk-card.line a{
    background:#fff;
    color:#059669;
    border:0;
}

.jk-big-text{
    margin:28px 0 16px;
    font-size:34px;
    font-weight:900;
    color:#0f172a;
}

/* =========================
   NUMBER BALLS
========================= */

.jk-number{
    display:flex;
    justify-content:center;
    gap:8px;
    margin:14px 0 18px;
}

.jk-number span{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#eaf2ff;
    color:#0f4fa8;
    font-weight:900;
    font-size:20px;
    line-height:38px;
    text-align:center;
}

.jk-number.dark span{
    background:#0f172a;
    color:#fff;
}

.jk-number.gold span{
    background:#e5a72f;
    color:#fff;
}

.jk-number.gray span{
    background:#eef0f3;
    color:#222;
}

/* =========================
   SECTION TITLE
========================= */

.jk-section-title{
    margin-bottom:24px;
}

.jk-section-title h2{
    font-size:30px;
    color:#0f172a;
    letter-spacing:-.5px;
}

.jk-section-title p{
    margin-top:8px;
    font-size:15px;
    color:#64748b;
}

.jk-section-title a{
    color:#475569;
    font-size:14px;
    font-weight:700;
}

.jk-analysis-preview .jk-section-title,
.jk-local-ad .jk-section-title{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

/* =========================
   SERVICE
========================= */

.jk-service{
    padding:80px 0;
}

.jk-service-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.jk-service-card{
    display:block;

    min-height:250px;

    padding:34px 28px;

    border-radius:26px;

    background:#fff;

    box-shadow:0 10px 28px rgba(15,23,42,.08);

    transition:.25s;

    position:relative;

    overflow:hidden;
}

.jk-service-card:hover{
    transform:translateY(-8px);

    box-shadow:0 18px 42px rgba(15,23,42,.14);
}

.jk-service-card:before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg, #facc15, #e5a72f);
}

.jk-service-card span{
    display:inline-flex;

    width:54px;
    height:54px;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#0f172a;

    color:#facc15;

    font-size:18px;
    font-weight:900;

    margin-bottom:22px;
}

.jk-service-card h3{
    font-size:24px;

    color:#0f172a;

    margin-bottom:16px;

    line-height:1.4;
}

.jk-service-card p{
    font-size:15px;

    line-height:1.9;

    color:#64748b;
}

/* 모바일 */

@media all and (max-width:1024px){

    .jk-service-grid{
        grid-template-columns:repeat(2, 1fr);
    }

}

@media all and (max-width:768px){

    .jk-service{
        padding:54px 0;
    }

    .jk-service-grid{
        grid-template-columns:1fr;
    }

    .jk-service-card{
        min-height:auto;
    }

    .jk-service-card h3{
        font-size:22px;
    }

}

/* =========================
   ANALYSIS PREVIEW
========================= */

.jk-analysis-preview{
    padding:70px 0;
    background:#fff;
}

.jk-report-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.jk-report-card{
    padding:24px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    text-align:center;
    box-shadow:0 8px 24px rgba(15,23,42,.05);
    transition:.25s;
}

.jk-report-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 36px rgba(15,23,42,.12);
}

.jk-report-card h3{
    font-size:18px;
    margin-bottom:16px;
    color:#0f172a;
}

.jk-report-card p{
    min-height:48px;
    font-size:14px;
    color:#64748b;
    line-height:1.7;
}

.jk-report-card a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:40px;
    padding:0 20px;
    margin-top:18px;
    border-radius:999px;
    border:1px solid #ddd;
    color:#111;
    font-size:14px;
    font-weight:700;
}

.jk-chart.fake{
    height:95px;
    margin-bottom:18px;
    border-radius:14px;
    background:
        linear-gradient(to top, #dbeafe 20%, transparent 20%) 10% 100% / 12% 80% no-repeat,
        linear-gradient(to top, #93c5fd 45%, transparent 45%) 30% 100% / 12% 80% no-repeat,
        linear-gradient(to top, #facc15 65%, transparent 65%) 50% 100% / 12% 80% no-repeat,
        linear-gradient(to top, #60a5fa 35%, transparent 35%) 70% 100% / 12% 80% no-repeat,
        #f8fafc;
}

/* =========================
   LOCAL AD
========================= */

.jk-local-ad{
    padding:70px 0;
}

.jk-local-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
}

.jk-local-card{
    display:block;
    padding:20px;
    background:#fff;
    border-radius:22px;
    box-shadow:0 8px 24px rgba(15,23,42,.07);
    transition:.25s;
}

.jk-local-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 36px rgba(15,23,42,.12);
}

.jk-local-img{
    height:150px;
    margin-bottom:18px;
    border-radius:18px;
    background:linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:900;
    color:#64748b;
}

.jk-local-card strong{
    display:block;
    font-size:19px;
    color:#0f172a;
    margin-bottom:8px;
}

.jk-local-card p{
    font-size:14px;
    color:#64748b;
}

/* =========================
   NOTICE
========================= */

.jk-notice{
    max-width:1200px;
    margin:0 auto 56px;
    padding:32px;
    background:#fff;
    border-radius:22px;
    box-shadow:0 8px 24px rgba(15,23,42,.07);
}

.jk-notice h2{
    font-size:26px;
    margin-bottom:16px;
    color:#0f172a;
}

.jk-notice li{
    border-bottom:1px solid #eee;
}

.jk-notice li:last-child{
    border-bottom:0;
}

.jk-notice a{
    display:block;
    padding:14px 0;
    color:#334155;
}

/* =========================
   DISCLAIMER
========================= */

.jk-disclaimer{
    margin:0 0 40px;
    padding:44px 0;
    background:#0f172a;
    color:#e5e7eb;
}

.jk-disclaimer h2{
    font-size:24px;
    color:#facc15;
    margin-bottom:18px;
}

.jk-disclaimer p{
    font-size:15px;
    line-height:1.9;
    color:#cbd5e1;
}

/* =========================
   RESPONSIVE
========================= */

@media all and (max-width:1024px){

    .jk-hero{
        flex-direction:column;
        align-items:flex-start;
    }

    .jk-countdown{
        width:100%;
        max-width:360px;
    }

    .jk-card-grid,
    .jk-service-grid,
    .jk-report-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .jk-about-wrap{
        grid-template-columns:1fr;
    }

}

@media all and (max-width:768px){

    .jk-hero{
        min-height:auto;
        padding:54px 24px 86px;
    }

    .jk-hero-text h1{
        font-size:34px;
    }

    .jk-hero-text p{
        font-size:15px;
    }

    .jk-hero-text span{
        font-size:15px;
    }

    .jk-hero-btns{
        flex-direction:column;
        width:100%;
        max-width:280px;
    }

    .jk-hero-btns a{
        width:100%;
    }

    .jk-ad-banner{
        margin:26px 18px;
        padding:28px 18px;
    }

    .jk-card-grid,
    .jk-service-grid,
    .jk-report-grid,
    .jk-local-grid{
        grid-template-columns:1fr;
    }

    .jk-card-grid{
        margin-bottom:42px;
    }

    .jk-card{
        min-height:auto;
    }

    .jk-about,
    .jk-service,
    .jk-analysis-preview,
    .jk-local-ad{
        padding:48px 0;
    }

    .jk-about-text{
        padding:28px 22px;
    }

    .jk-section-title h2{
        font-size:25px;
    }

    .jk-analysis-preview .jk-section-title,
    .jk-local-ad .jk-section-title{
        display:block;
    }

    .jk-analysis-preview .jk-section-title a,
    .jk-local-ad .jk-section-title a{
        display:inline-block;
        margin-top:10px;
    }

    .jk-notice{
        margin:0 18px 42px;
        padding:26px 20px;
    }

    .jk-disclaimer{
        padding:34px 0;
    }

}

/* =========================
   RESULT CARD DETAIL
========================= */

.jk-result-date{
    display:inline-block;
    margin:0 auto 14px;
    padding:6px 13px;
    border-radius:999px;
    background:#f1f5f9;
    color:#475569;
    font-size:13px;
    font-weight:700;
}

.jk-result-info{
    margin:12px 0 14px;
    border-top:1px solid #eef2f7;
}

.jk-result-info div{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:9px 0;
    border-bottom:1px solid #eef2f7;
    font-size:13px;
}

.jk-result-info strong{
    color:#0f172a;
}

.jk-result-info span{
    color:#475569;
    font-weight:700;
}

.jk-result-note{
    margin-top:8px !important;
    font-size:13px !important;
    color:#64748b !important;
}


/* =========================
   AD REAL STYLE
========================= */

.jk-ad-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.jk-ad-text{
    text-align:left;
}

.jk-ad-label{
    display:inline-block;

    margin-bottom:12px;
    padding:6px 12px;

    border-radius:999px;

    background:rgba(255,255,255,.15);

    color:#facc15;

    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
}

.jk-ad-text strong{
    display:block;

    font-size:28px;
    line-height:1.4;

    margin-bottom:10px;
}

.jk-ad-text p{
    font-size:15px;
    color:rgba(255,255,255,.82);
}

.jk-ad-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:180px;
    height:50px;

    padding:0 24px;

    border-radius:999px;

    background:#fff;

    color:#111;

    font-size:15px;
    font-weight:800;
}

@media all and (max-width:768px){

    .jk-ad-wrap{
        display:block;
        text-align:center;
    }

    .jk-ad-text{
        text-align:center;
    }

    .jk-ad-text strong{
        font-size:22px;
    }

    .jk-ad-btn{
        margin-top:20px;
        width:100%;
    }

}

/* =========================
   STAT LIST
========================= */

.jk-stat-list{
    margin:0 0 18px;
    padding:0;
}

.jk-stat-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
    border-bottom:1px solid #eef2f7;
}

.jk-stat-list li:last-child{
    border-bottom:0;
}

.jk-stat-list span{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#eaf2ff;
    color:#0f4fa8;
    font-size:18px;
    font-weight:900;
    line-height:42px;
    text-align:center;
}

.jk-stat-list strong{
    font-size:14px;
    color:#334155;
}

.jk-stat-list.gold span{
    background:#e5a72f;
    color:#fff;
}

.jk-stat-list.dark span{
    background:#0f172a;
    color:#fff;
}

.jk-ratio-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:18px;
}

.jk-ratio-box div{
    padding:18px 10px;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
}

.jk-ratio-box strong{
    display:block;
    font-size:14px;
    color:#64748b;
    margin-bottom:8px;
}

.jk-ratio-box span{
    font-size:26px;
    font-weight:900;
    color:#0f172a;
}

/* =========================
   NOTICE REAL STYLE
========================= */

.jk-notice-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;

    margin-bottom:24px;
}

.jk-notice-head h2{
    margin-bottom:6px;
}

.jk-notice-head p{
    font-size:14px;
    color:#64748b;
}

.jk-notice-head a{
    font-size:14px;
    font-weight:700;
    color:#334155;
}

.jk-notice-list li{
    border-bottom:1px solid #eef2f7;
}

.jk-notice-list li:last-child{
    border-bottom:0;
}

.jk-notice-list a{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding:18px 0;
}

.jk-notice-list strong{
    font-size:16px;
    color:#0f172a;

    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.jk-notice-list span{
    flex-shrink:0;

    font-size:13px;
    color:#94a3b8;
}

@media all and (max-width:768px){

    .jk-notice-head{
        display:block;
    }

    .jk-notice-head a{
        display:inline-block;
        margin-top:12px;
    }

    .jk-notice-list a{
        display:block;
    }

    .jk-notice-list span{
        display:block;
        margin-top:8px;
    }

}

/* =========================
   LIVE STATUS
========================= */

.jk-live-status{
    display:flex;
    align-items:center;

    gap:10px;

    margin-top:26px;

    font-size:14px;
    color:rgba(255,255,255,.84);
}

.jk-live-status .live{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:52px;
    height:28px;

    padding:0 12px;

    border-radius:999px;

    background:#ef4444;

    color:#fff;

    font-size:12px;
    font-weight:900;

    letter-spacing:1px;

    box-shadow:0 0 18px rgba(239,68,68,.45);

    animation:jkLiveBlink 1.4s infinite;
}

@keyframes jkLiveBlink{

    0%{
        opacity:1;
    }

    50%{
        opacity:.45;
    }

    100%{
        opacity:1;
    }

}

/* =========================
   ABOUT
========================= */

.jk-about{
    padding:86px 0;
    background:
        radial-gradient(circle at top left, rgba(250,204,21,.16), transparent 34%),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.jk-about-head{
    max-width:820px;
    margin-bottom:34px;
}

.jk-about-head span{
    display:inline-flex;
    padding:7px 14px;
    margin-bottom:18px;
    border-radius:999px;
    background:#0f172a;
    color:#facc15;
    font-size:12px;
    font-weight:900;
    letter-spacing:1.2px;
}

.jk-about-head h2{
    font-size:38px;
    line-height:1.35;
    letter-spacing:-1px;
    color:#0f172a;
    margin-bottom:18px;
}

.jk-about-head p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
}

.jk-about-panel{
    display:grid;
    grid-template-columns:1.35fr .65fr;
    gap:22px;
}

.jk-about-main{
    position:relative;
    overflow:hidden;
    min-height:430px;
    padding:42px;
    border-radius:28px;
    background:
        linear-gradient(135deg, rgba(15,23,42,.96), rgba(30,41,59,.94)),
        url('/img/jk_main_bg.jpg') center/cover no-repeat;
    color:#fff;
    box-shadow:0 20px 50px rgba(15,23,42,.18);
}

.jk-about-main:after{
    content:"";
    position:absolute;
    right:-80px;
    bottom:-80px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(250,204,21,.16);
}

.jk-about-badge{
    display:inline-flex;
    padding:7px 14px;
    margin-bottom:24px;
    border-radius:999px;
    background:rgba(250,204,21,.16);
    color:#facc15;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;
}

.jk-about-main h3{
    position:relative;
    z-index:1;
    font-size:34px;
    line-height:1.35;
    margin-bottom:20px;
}

.jk-about-main p{
    position:relative;
    z-index:1;
    max-width:720px;
    font-size:16px;
    line-height:1.9;
    color:rgba(255,255,255,.84);
}

.jk-about-checks{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
    margin-top:34px;
}

.jk-about-checks div{
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
}

.jk-about-checks strong{
    display:block;
    margin-bottom:8px;
    color:#facc15;
    font-size:13px;
}

.jk-about-checks span{
    font-size:14px;
    color:#fff;
}

.jk-about-side{
    display:grid;
    gap:14px;
}

.jk-about-stat{
    padding:28px;
    border-radius:24px;
    background:#fff;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.jk-about-stat strong{
    display:block;
    font-size:32px;
    font-weight:900;
    color:#0f172a;
    margin-bottom:8px;
}

.jk-about-stat span{
    font-size:15px;
    color:#64748b;
}

.jk-about-notice{
    padding:24px;
    border-radius:24px;
    background:#fff7ed;
    border:1px solid #fed7aa;
}

.jk-about-notice b{
    display:block;
    margin-bottom:8px;
    color:#c2410c;
}

.jk-about-notice p{
    font-size:14px;
    line-height:1.8;
    color:#7c2d12;
}

@media all and (max-width:1024px){

    .jk-about-panel{
        grid-template-columns:1fr;
    }

}

@media all and (max-width:768px){

    .jk-about{
        padding:58px 0;
    }

    .jk-about-head h2{
        font-size:28px;
    }

    .jk-about-head p{
        font-size:15px;
    }

    .jk-about-main{
        min-height:auto;
        padding:30px 22px;
    }

    .jk-about-main h3{
        font-size:26px;
    }

    .jk-about-checks{
        grid-template-columns:1fr;
    }

}


/* =========================
   REPORT DESIGN UPGRADE
========================= */

.jk-report-card{
    position:relative;
    overflow:hidden;
}

.jk-report-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg, #facc15, #e5a72f);
}

.jk-report-icon{
    width:58px;
    height:58px;
    margin:0 auto 14px;
    border-radius:20px;
    background:linear-gradient(135deg, #f8fafc, #eef2ff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:inset 0 0 0 1px #e5e7eb;
}

.jk-report-label{
    display:inline-block;
    margin-bottom:10px;
    padding:5px 11px;
    border-radius:999px;
    background:#0f172a;
    color:#facc15;
    font-size:11px;
    font-weight:900;
    letter-spacing:1px;
}

.jk-report-card:nth-child(2) .jk-report-label,
.jk-report-card:nth-child(2):before{
    background:#e5a72f;
    color:#fff;
}

.jk-report-card:nth-child(3) .jk-report-label,
.jk-report-card:nth-child(3):before{
    background:#0f172a;
    color:#fff;
}

.jk-report-card:nth-child(4) .jk-report-label,
.jk-report-card:nth-child(4):before{
    background:#16a34a;
    color:#fff;
}