/* ==========================================
   HERO
========================================== */

.pk-hero{
    background:
    linear-gradient(
        135deg,
        #07101f 0%,
        #10243c 55%,
        #17304f 100%
    );

    padding:56px 20px 64px;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

.pk-hero .container{
    max-width:1080px;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.pk-hero-visual{
    position:relative;
    max-width:900px;
    margin:0 auto;
    border-radius:26px;
    overflow:hidden;
    background:#081426;
    border:1px solid rgba(200,169,107,.35);
    box-shadow:
    0 26px 70px rgba(0,0,0,.32);
}

.pk-hero-visual::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(7,16,31,0) 45%,
        rgba(7,16,31,.22) 100%
    );
    pointer-events:none;
}

.pk-hero-visual img{
    display:block;
    width:100%;
    aspect-ratio:3/2;
    height:auto;
    object-fit:contain;
    object-position:center center;
}

.pk-hero-content{
    position:relative;
    width:auto;
    max-width:100%;
    margin:22px auto 0;
    padding:18px 22px;
    border-radius:999px;
    background:
    linear-gradient(
        135deg,
        rgba(7,16,31,.72),
        rgba(23,48,79,.72)
    );
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(12px);
    box-shadow:
    0 16px 38px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.pk-hero h1{
    font-size:46px;
    margin-bottom:18px;
    line-height:1.2;
    text-shadow:
        0 3px 12px rgba(0,0,0,.35);
    color:#ffffff;
}

.pk-hero p{
    max-width:850px;
    margin:auto;
    font-size:20px;
    color:#f0f4f8;
    text-shadow:
        0 2px 8px rgba(0,0,0,.4);
}

.hero-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(200,169,107,.18);
    border:1px solid rgba(200,169,107,.45);
    color:#ffd89b;
    font-weight:700;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.hero-buttons{
    margin-top:0;
    display:flex;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

/* ==========================================
   SECTION
========================================== */

.pk-section{
    padding:100px 20px;
}

.pk-intro-section{
    padding:68px 20px;
    background:#ffffff;
}

.section-intro{
    max-width:760px;
    margin:auto;
    text-align:center;
    line-height:1.8;
    font-size:17px;
    color:#64748b;
}

.pk-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:35px;
    color:#17304f;
}

.pk-intro-section h2{
    font-size:34px;
    margin-bottom:22px;
}

/* ==========================================
   STAGE HEADER
========================================== */

.pk-stage,
.stage-ruh{
    padding:105px 20px;
}

.pk-stage{
    background:
    linear-gradient(
        180deg,
        #f8f4ee,
        #ffffff
    );
}

.stage-ruh{
    background:
    linear-gradient(
        135deg,
        #0d1b2a,
        #17304f
    );
}

.stage-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 58px;
}

.stage-label{
    display:inline-block;
    background:#c8a96b;
    color:#17304f;
    padding:10px 24px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}

.stage-header h2{
    font-size:44px;
    margin-bottom:15px;
}

.stage-header p{
    line-height:1.8;
}

.stage-ruh .stage-header h2,
.stage-ruh .stage-header p{
    color:white;
}

/* ==========================================
   GRID
========================================== */

.journey-grid,
.level-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(330px,1fr));
    gap:28px;
}

.journey-service-card{
    position:relative;
    overflow:hidden;
    min-height:100%;
    padding:34px;
    border-radius:24px;
    background:
    linear-gradient(
        180deg,
        #ffffff,
        #fbf7ef
    );
    border:1px solid rgba(200,169,107,.22);
    box-shadow:
    0 18px 42px rgba(15,30,59,.09);
    transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.journey-service-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:6px;
    background:
    linear-gradient(
        90deg,
        #c8a96b,
        #f4d28e,
        #17304f
    );
}

.journey-service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(200,169,107,.55);
    box-shadow:
    0 26px 58px rgba(15,30,59,.14);
}

.journey-icon{
    width:66px;
    height:66px;
    margin-bottom:22px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
    linear-gradient(
        135deg,
        #17304f,
        #244a76
    );
    box-shadow:
    0 14px 28px rgba(23,48,79,.22);
    font-size:28px;
}

.journey-label{
    display:inline-block;
    margin-bottom:14px;
    padding:7px 15px;
    border-radius:50px;
    background:rgba(200,169,107,.18);
    color:#17304f;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.journey-service-card h3{
    color:#17304f;
    font-size:25px;
    line-height:1.35;
    margin-bottom:14px;
}

.journey-service-card p{
    color:#64748b;
    line-height:1.85;
    margin-bottom:24px;
}

.session-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:92px;
    padding:8px 16px;
    border-radius:50px;
    background:#17304f;
    color:#ffffff;
    font-weight:700;
    font-size:14px;
}

/* ==========================================
   CARD PREMIUM
========================================== */

.journey-card,
.level-card{

    background:white;

    border-radius:30px;

    padding:35px;

    border:1px solid rgba(200,169,107,.25);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.journey-card:hover,
.level-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);
}

.journey-card::before,
.level-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #c8a96b,
        #f4d28e
    );
}

/* ==========================================
   ICON
========================================== */

.card-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:#d8bb7a;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:25px;
}

/* ==========================================
   BADGE
========================================== */

.level-badge,
.level-number{

    display:inline-block;

    background:#17304f;

    color:white;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;
}

.session-tag{

    display:inline-block;

    background:#c8a96b;

    color:#17304f;

    padding:8px 16px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;
}

/* ==========================================
   TITLE
========================================== */

.journey-card h3,
.level-card h3{

    font-size:30px;

    color:#17304f;

    margin-bottom:20px;

    line-height:1.3;
}

/* ==========================================
   LIST
========================================== */

.journey-card ul,
.level-card ul{

    list-style:none;
    padding:0;
    margin:0;
}

.journey-card li,
.level-card li{

    position:relative;

    padding-left:28px;

    margin-bottom:12px;

    line-height:1.8;
}

.journey-card li::before,
.level-card li::before{

    content:"✦";

    position:absolute;

    left:0;

    color:#c8a96b;
}

/* ==========================================
   RUH CARD
========================================== */

.stage-ruh .level-card{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    color:white;

    border:
    1px solid rgba(255,255,255,.12);
}

.stage-ruh .level-card h3{
    color:#f5d18d;
}

.stage-ruh .level-number{
    background:#c8a96b;
    color:#17304f;
}

/* ==========================================
   BENEFIT
========================================== */

.benefit-section{
    background:white;
}

.benefit-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;
}

.benefit-item{

    background:white;

    padding:30px;

    border-radius:24px;

    text-align:center;

    border-top:4px solid #c8a96b;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    font-weight:600;
}

/* ==========================================
   CTA
========================================== */

.cta-program{

    background:
    linear-gradient(
        135deg,
        #17304f,
        #244a76
    );

    color:white;

    text-align:center;

    padding:140px 20px;
}

.cta-program h2{

    font-size:48px;

    margin-bottom:20px;
}

.cta-program p{

    max-width:750px;

    margin:auto auto 40px;

    line-height:1.9;
}

/* ==========================================
   BUTTON
========================================== */

.btn-primary{

    background:#c8a96b;

    color:#17304f;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;
}

.btn-outline{

    border:2px solid #c8a96b;

    color:white;

    padding:12px 28px;

    border-radius:50px;

    text-decoration:none;
}

.btn-large{
    font-size:18px;
}

/* ==========================================
   ROADMAP PROGRAM
========================================== */

.journey-stage{

    padding:105px 20px;
}

.journey-title{

    text-align:center;
    margin-bottom:56px;
}

.journey-title span{

    display:inline-block;

    background:#c8a96b;

    color:#17304f;

    padding:10px 24px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;
}

.journey-title h2{

    font-size:44px;

    color:#17304f;

    margin-bottom:15px;
}

.journey-title p{

    max-width:700px;

    margin:auto;

    color:#64748b;
}

/* GRID */

.roadmap-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.roadmap-grid-2{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;

    max-width:920px;

    margin:auto;
}

/* CARD */

.roadmap-card{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #fbf7ef
    );

    border-radius:24px;

    padding:36px;

    text-align:center;

    border:1px solid rgba(200,169,107,.22);

    box-shadow:
    0 18px 42px rgba(15,30,59,.09);

    transition:.35s;
}

.roadmap-card::before{
    content:"";
    position:absolute;
    inset:0 0 auto;
    height:6px;
    background:
    linear-gradient(
        90deg,
        #17304f,
        #c8a96b,
        #f4d28e
    );
}

.roadmap-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 26px 58px rgba(15,30,59,.14);
}

.roadmap-level{

    display:inline-block;

    background:#17304f;

    color:white;

    padding:8px 20px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;
}

.roadmap-card h3{

    font-size:28px;

    color:#17304f;

    margin-bottom:20px;

    line-height:1.3;
}

.roadmap-session{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:92px;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(200,169,107,.18);

    color:#17304f;

    font-size:16px;

    font-weight:700;
}

/* RUH */

.ruh-roadmap{

    background:
    linear-gradient(
        180deg,
        #f8f4ee,
        #ffffff
    );
}

/* RESPONSIVE */

@media(max-width:768px){

    .pk-hero{
        padding:34px 16px 52px;
        background:
        linear-gradient(
            135deg,
            #07101f 0%,
            #10243c 55%,
            #17304f 100%
        );
    }

    .pk-hero-visual{
        border-radius:18px;
    }

    .pk-hero-content{
        width:100%;
        margin-top:16px;
        padding:14px;
        border-radius:18px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
        align-items:center;
    }

    .hero-buttons a{
        width:100%;
        max-width:300px;
    }

    .pk-hero h1{
        font-size:34px;
    }

    .pk-hero p{
        font-size:17px;
    }

    .pk-intro-section{
        padding:52px 20px;
    }

    .pk-intro-section h2{
        font-size:28px;
    }

    .pk-stage,
    .journey-stage{
        padding:72px 20px;
    }

    .stage-header h2,
    .journey-title h2{
        font-size:34px;
    }

    .journey-grid,
    .level-grid{
        grid-template-columns:1fr;
    }

    .journey-service-card,
    .roadmap-card{
        padding:28px;
        border-radius:20px;
    }
}

@media(max-width:992px){

    .roadmap-grid{

        grid-template-columns:1fr;
    }

    .roadmap-grid-2{

        grid-template-columns:1fr;
    }
}

.cta-program{
    margin-bottom:0 !important;
    padding-bottom:80px;
}

footer,
.site-footer{
    margin-top:0 !important;
}

main,
.site-content,
.content-area{
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}
