.jk-services-premium {
    background: transparent;
    position: relative;
    z-index: 2;
}

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

.jk-grid-item {
    height: 100%;
}

.jk-service-card-premium {
    position: relative;
    padding: 45px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    border: 1px solid var(--jk-border);
    background: var(--jk-card);
    overflow: hidden;
    transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.jk-service-card-premium::before,
.jk-service-card-premium::after {
    content: none !important;
}

.jk-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: inherit;
    position: relative;
    z-index: 2;
}

.jk-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 16px;
}

.jk-icon-box-premium {
    position: relative;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--jk-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    overflow: hidden;
    flex: 0 0 auto;
}

.jk-icon-box-premium .emoji {
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.34), transparent 68%);
    filter: blur(18px);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.jk-card-body h3 {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0;
    line-height: 1.35;
}

.jk-card-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--jk-muted);
    margin-bottom: 40px;
}

.jk-card-footer {
    margin-top: auto;
}

.jk-link-effect {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
    color: var(--jk-gold-soft);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.arrow-svg {
    width: 18px;
    transform: scaleX(-1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.jk-service-card-premium:hover:not(.is-locked) {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.22);
    background: var(--jk-card-strong);
    box-shadow: 0 32px 78px rgba(0, 0, 0, 0.42);
}

.jk-service-card-premium:hover .icon-glow {
    opacity: 0.28;
}

.jk-service-card-premium:hover .arrow-svg {
    transform: scaleX(-1) translateX(8px);
}

.jk-service-card-premium:hover .jk-link-effect {
    color: #fff;
}

.is-locked {
    opacity: 0.62;
    cursor: pointer;
}

.is-locked:hover {
    transform: none !important;
    border-color: var(--jk-border) !important;
    background: var(--jk-card) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18) !important;
}

.is-locked .jk-link-effect {
    color: rgba(248, 250, 252, 0.76);
}

.jk-badge-soon {
    font-size: 10px;
    padding: 4px 12px;
    margin: 0;
    border-radius: 999px;
    letter-spacing: 0.08em;
}

/* Soon panel */
.jk-soon-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.jk-soon-panel.is-visible {
    display: flex;
}

.jk-soon-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 11, 0.72);
    backdrop-filter: blur(10px);
    animation: jkBackdropIn 0.25s ease both;
}

.jk-soon-panel-card {
    position: relative;
    width: min(92vw, 520px);
    border-radius: 26px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 42%),
        linear-gradient(145deg, #161922 0%, #0f1218 100%);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.68);
    padding: 28px 24px 22px;
    color: #fff;
    transform: translateY(28px) scale(0.98);
    opacity: 0;
    animation: jkPanelUp 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    overflow: hidden;
}

.jk-soon-panel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.45), transparent 35%, transparent 65%, rgba(212, 175, 55, 0.2));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.jk-soon-close {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(248, 250, 252, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.jk-soon-close:hover {
    background: rgba(212, 175, 55, 0.12);
    color: #fff;
    transform: rotate(90deg);
}

.jk-soon-close svg {
    width: 18px;
    height: 18px;
}

.jk-soon-panel-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.22);
    color: #d4af37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.jk-soon-panel-title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0;
}

.jk-soon-panel-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.95;
    color: rgba(248, 250, 252, 0.82);
}

.jk-soon-panel-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    font-size: 12px;
    color: rgba(248, 250, 252, 0.6);
}

.jk-soon-panel-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.55), transparent);
}

.jk-no-scroll {
    overflow: hidden;
}

@keyframes jkPanelUp {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes jkBackdropIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .jk-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .jk-service-card-premium {
        padding: 18px;
        border-radius: 16px;
    }

    .jk-card-top {
        margin-bottom: 18px;
    }

    .jk-card-body h3 {
        font-size: 17px;
        margin-bottom: 10px;
        line-height: 1.45;
    }

    .jk-card-body p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .jk-icon-box-premium {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        font-size: 22px;
    }

    .jk-link-effect {
        font-size: 12px;
        gap: 8px;
    }

    .arrow-svg {
        width: 16px;
    }

    .jk-soon-panel-card {
        width: min(94vw, 460px);
        padding: 24px 18px 20px;
        border-radius: 22px;
    }

    .jk-soon-panel-title {
        font-size: 21px;
    }

    .jk-soon-panel-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .jk-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .jk-service-card-premium {
        padding: 14px;
        border-radius: 14px;
    }

    .jk-card-body h3 {
        font-size: 15px;
    }

    .jk-card-body p {
        font-size: 12px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .jk-icon-box-premium {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 20px;
    }

    .jk-badge-soon {
        font-size: 9px;
        padding: 3px 9px;
    }

    .jk-soon-panel {
        padding: 12px;
    }

    .jk-soon-panel-card {
        width: 100%;
        padding: 22px 16px 18px;
        border-radius: 20px;
    }

    .jk-soon-panel-title {
        font-size: 19px;
    }

    .jk-soon-panel-text {
        font-size: 13px;
    }
}
.jk-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.jk-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background: rgba(212, 175, 55, 0.06);
    color: #d4af37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
}

.jk-section-header .jk-hero-title {
    margin: 0 auto;
    max-width: 900px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
    color: #fff;
}

.jk-section-header .jk-hero-title span {
    color: #d4af37;
}

@media (max-width: 768px) {
    .jk-section-header {
        margin-bottom: 38px;
    }

    .jk-kicker {
        padding: 5px 12px;
        font-size: 10px;
        margin-bottom: 10px;
    }

    .jk-section-header .jk-hero-title {
        font-size: 24px;
        line-height: 1.35;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .jk-section-header {
        margin-bottom: 28px;
    }

    .jk-kicker {
        font-size: 9px;
        padding: 4px 10px;
        letter-spacing: 0.06em;
    }

    .jk-section-header .jk-hero-title {
        font-size: 22px;
        line-height: 1.4;
    }
}
