/* ============================================================
   JANNATA GROUP — BERANDA (HOMEPAGE) STYLESHEET
   Mobile (<768px), Tablet (768px-1023px), Macbook (1024px-1439px), Desktop (>=1440px)
   ============================================================ */

/* ============================================================
   GLOBAL UTILITIES FOR HOMEPAGE
   ============================================================ */
.jn-section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-blue-main);
    margin-bottom: 8px;
}

.jn-section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-dark-heading);
    margin: 0 0 16px 0;
}

.jn-section-header-center {
    max-width: 720px;
    margin: 0 auto 48px auto;
}

/* Button System */
.jn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    box-sizing: border-box;
}

.jn-btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.jn-btn-primary {
    background: var(--color-blue-main);
    color: #FFFFFF !important;
    border: 1px solid var(--color-blue-main);
    box-shadow: 0 4px 14px rgba(35, 69, 154, 0.28);
}

.jn-btn-primary:hover {
    background: #193478;
    border-color: #193478;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 69, 154, 0.38);
}

.jn-btn-outline-white {
    background: transparent;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.jn-btn-outline-white:hover {
    background: #FFFFFF;
    color: var(--color-navy) !important;
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.jn-btn-outline-blue {
    background: transparent;
    color: var(--color-blue-main) !important;
    border: 1px solid var(--color-blue-main);
}

.jn-btn-outline-blue:hover {
    background: var(--color-blue-main);
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* ============================================================
   SECTION 1 — HERO SECTION
   ============================================================ */
/* ============================================================
   SECTION 1 — HERO SECTION (FIGMA SPECIFIED LAYOUT & GRADIENTS)
   ============================================================ */
.jn-hero-section {
    position: relative;
    width: 100%;
    min-height: 687px;
    background: linear-gradient(83.78deg, #000E4B 2.79%, #23459A 100.95%);
    color: #FFFFFF;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 96px;
    box-sizing: border-box;
}

/* Background Layers Container */
.jn-hero-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* Right Background Photo */
.jn-hero-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

@media (max-width: 1023px) {
    .jn-hero-bg-photo {
        display: none !important;
    }
}

/* Left Slanted Blue SVG Shape Wrapper */
.jn-hero-svg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.jn-hero-svg-shape {
    width: 100%;
    height: 100%;
    display: block;
}

/* Top Right Red-White-Blue Flag Stripes */
.jn-hero-accent-stripes {
    position: absolute;
    top: 0;
    right: 5%;
    width: 280px;
    height: 24px;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.jn-hero-accent-stripes .stripe-blue {
    height: 8px;
    background: #000E4B;
}

.jn-hero-accent-stripes .stripe-white {
    height: 8px;
    background: #FFFFFF;
}

.jn-hero-accent-stripes .stripe-red {
    height: 8px;
    background: #E11D48;
}

.jn-hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
}

.jn-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.jn-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    max-width: 600px;
}

.jn-hero-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.jn-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 51px;
    color: #F5F5F5;
    margin: 0;
    letter-spacing: -0.01em;
}

.jn-hero-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #F5F5F5;
    margin: 0;
    max-width: 502px;
}

.jn-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
}

.jn-btn-white-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: #FFFFFF;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #1F3E8F !important;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.jn-btn-white-pill:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.jn-btn-glass-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(4px);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF !important;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.jn-btn-glass-pill:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.jn-hero-card-wrap {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: flex-end;
}

.jn-hero-card-img-wrapper {
    width: 100%;
    height: 399px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.jn-hero-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   SECTION 2 — ABOUT BRIEF (EXACT FIGMA SPECIFICATIONS)
   ============================================================ */
.jn-about-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.jn-about-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 96px;
    width: 100%;
}

.jn-about-left {
    flex: none;
    width: 403.17px;
    height: 410px;
}

.jn-about-images-group {
    position: relative;
    width: 403.17px;
    height: 410px;
}

.jn-about-img {
    position: absolute;
    object-fit: cover;
}

.jn-about-img1 {
    top: 0;
    left: 0;
    width: 191.83px;
    height: 364.48px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 0px;
}

.jn-about-img2 {
    top: 45.52px;
    left: 211.34px;
    width: 191.83px;
    height: 364.48px;
    border-top-left-radius: 0px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
}

.jn-about-badge-logo {
    position: absolute;
    top: 114px;
    left: 125px;
    width: 141px;
    height: 141px;
    border-radius: 70px;
    background: #E9F6E7;
    border: 8px solid #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 5;
}

.jn-badge-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.jn-about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.jn-section-tag-blue {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0A3995;
    margin-bottom: 14px;
}

.jn-about-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    color: #1C252E;
    margin: 0 0 20px 0;
}

.jn-about-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #637381;
    margin: 0 0 16px 0;
}

.jn-about-desc:last-child {
    margin-bottom: 0;
}

.jn-about-action {
    margin-top: 0;
}

.jn-btn-blue-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    height: 44px;
    background: #204093;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF !important;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(32, 64, 147, 0.3);
}

.jn-btn-blue-pill:hover {
    background: #162F6F;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(32, 64, 147, 0.45);
}

.jn-btn-blue-pill svg {
    transition: transform 0.2s ease;
}

.jn-btn-blue-pill:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   SECTION 3 — MENGAPA HARUS JANNATA GROUP (EXACT FIGMA SPECS)
   ============================================================ */
.jn-why-section {
    background: #F9FAFB;
    padding: 80px 0;
}

.jn-why-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    text-align: center;
}

.jn-why-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0A3995;
    margin: 0;
}

.jn-why-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #000000;
    margin: 0;
}

.jn-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.jn-why-card {
    background: #FFFFFF;
    border: 1.5px solid #0C45B5;
    border-radius: 32px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    min-height: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jn-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 30px rgba(12, 69, 181, 0.15);
}

.jn-why-card-header {
    width: 100%;
    min-height: 64px;
    background: linear-gradient(90deg, #23469A 0%, #05195A 100%);
    border-radius: 0 0 50% 50% / 0 0 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    box-sizing: border-box;
}

.jn-why-card-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.jn-why-card-body {
    padding: 24px 32px 32px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.jn-why-card-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #606060;
    margin: 0;
}

/* ============================================================
   SECTION 3 — LAYANAN KAMI (EXACT FIGMA SPECIFICATIONS)
   ============================================================ */
.jn-services-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.jn-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 180px;
    margin-bottom: 56px;
}

.jn-services-header-left {
    flex: 1;
    max-width: 510px;
}

.jn-services-main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #1C252E;
    margin: 0;
}

.jn-services-header-right {
    flex: 1;
    max-width: 510px;
    text-align: right;
}

.jn-services-header-right p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #777777;
    margin: 0;
}

.jn-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.jn-service-card {
    position: relative;
    width: 100%;
    height: 357.67px;
    border-radius: 32px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jn-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.jn-service-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.jn-service-card:hover .jn-service-card-bg {
    transform: scale(1.05);
    filter: blur(3px);
}

.jn-service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.95) 100%);
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 12px;
    z-index: 2;
    color: #FFFFFF;
    transition: background 0.3s ease;
}

.jn-service-card:hover .jn-service-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.96) 100%);
}

.jn-service-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #FFFFFF;
    margin: 0;
    transition: transform 0.3s ease;
}

/* Hover revealed content (Hidden by default, shown on hover) */
.jn-service-hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(12px);
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.jn-service-card:hover .jn-service-hover-content {
    max-height: 260px;
    opacity: 1;
    transform: translateY(0);
}

.jn-service-sublist {
    margin: 8px 0 16px 0;
    padding-left: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #E2E8F0;
}

.jn-service-sublist li {
    margin-bottom: 4px;
}

.jn-service-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    height: 40px;
    border: 1px solid #FFFFFF;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.008em;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.jn-service-card:hover .jn-service-btn-pill {
    background: #FFFFFF;
    color: #1C252E;
}

/* ============================================================
   SECTION 5 — MITRA & KLIEN (EXACT FIGMA SPECIFICATIONS)
   ============================================================ */
.jn-partners-section {
    background: #FFFFFF;
    padding: 80px 0;
    overflow: hidden;
}

.jn-partners-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 36px;
}

.jn-partners-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0A3995;
}

.jn-partners-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    color: #1C252E;
    margin: 0;
}

.jn-partners-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 32px 0;
    background: #FFFFFF;
}

.jn-partners-marquee {
    display: flex;
    align-items: center;
    gap: 41.32px;
    width: max-content;
    animation: partnerScroll 35s linear infinite;
}

.jn-partners-marquee:hover {
    animation-play-state: paused;
}

@keyframes partnerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.jn-partner-item {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    flex-shrink: 0;
    background: transparent;
}

.jn-partner-item img {
    max-height: 58px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.jn-partner-item:hover img {
    transform: scale(1.06);
}

.jn-partner-placeholder {
    font-size: 15px;
    font-weight: 600;
    color: #0A3995;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 16px;
    background: #F4F6F8;
    border-radius: 8px;
}

/* ============================================================
   SECTION 6 — CAREER CTA BANNER
   ============================================================ */
.jn-career-section {
    background: #FFFFFF;
}

/* ============================================================
   SECTION 6 — PROGRAM PENDIDIKAN & PELATIHAN SATPAM (EXACT FIGMA SPECS)
   ============================================================ */
.jn-program-section {
    background: #F2F4F7;
    padding: 94px 0;
}

.jn-program-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}

.jn-program-content {
    flex: 1;
    max-width: 576px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.jn-program-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.jn-program-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0A3995;
    margin: 0;
}

.jn-program-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #1C252E;
    margin: 0;
}

.jn-program-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #637381;
    margin: 0;
}

.jn-program-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.jn-program-btn-primary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #204093;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jn-program-btn-primary:hover {
    background: #000E4B;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 64, 147, 0.25);
}

.jn-program-btn-secondary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: #FFFFFF;
    border: 1px solid #204093;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #204093;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jn-program-btn-secondary:hover {
    background: #204093;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 64, 147, 0.15);
}

.jn-program-media {
    width: 560px;
    height: 400px;
    max-width: 100%;
    border-radius: 32px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.jn-program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.jn-program-media:hover .jn-program-img {
    transform: scale(1.03);
}

/* ============================================================
   SECTION 7 — DOKUMENTASI KEGIATAN KAMI (EXACT FIGMA SPECS)
   ============================================================ */
.jn-doc-section {
    background: #F9FAFB;
    padding: 80px 0;
}

.jn-doc-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    text-align: center;
}

.jn-doc-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4B698C;
    margin: 0;
}

.jn-doc-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    color: #333333;
    margin: 0;
}

.jn-doc-section {
    background: #FFFFFF;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

.jn-doc-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jn-doc-stage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    min-height: 372px;
    overflow: hidden;
}

.jn-doc-item {
    border-radius: 32px;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.jn-doc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jn-doc-item--side {
    width: 420px;
    height: 310px;
    opacity: 0.55;
    z-index: 1;
}

.jn-doc-item--center {
    width: 530px;
    height: 370px;
    opacity: 1;
    z-index: 2;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.jn-doc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #FFFFFF;
    border: 1px solid #E6ECF0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 25;
    color: #155EEF;
    transition: all 0.3s ease;
}

.jn-doc-nav-btn:hover {
    background: #155EEF;
    color: #FFFFFF;
    border-color: #155EEF;
    transform: translateY(-50%) scale(1.05);
}

.jn-doc-prev {
    left: 15px;
}

.jn-doc-next {
    right: 15px;
}

.jn-doc-grid {
    width: 100%;
}

.jn-doc-card {
    position: relative;
}

.jn-doc-img-wrapper {
    height: 280px;
}

.jn-doc-img-wrapper img {
    border-radius: var(--radius-xl);
}

/* ============================================================
   SECTION 8 — PRESTASI DAN PENGHARGAAN KAMI
   ============================================================ */
.jn-awards-section {
    background: #F2F4F7;
    padding: 80px 0;
}

.jn-awards-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.jn-award-card {
    background: #FFFFFF;
    border: 2px solid #0C45B5;
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 434px;
    overflow: hidden;
    box-sizing: border-box;
}

.jn-award-card--reverse {
    flex-direction: row-reverse;
}

.jn-award-media {
    flex: 1;
    width: 50%;
    min-height: 430px;
    background: linear-gradient(135deg, #000E4B 0%, #0B1B4F 100%);
    border-radius: 38px;
    margin: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.jn-award-img {
    max-width: 90%;
    max-height: 360px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
    transition: transform 0.4s ease;
}

.jn-award-card:hover .jn-award-img {
    transform: scale(1.04);
}

.jn-award-content {
    flex: 1;
    width: 50%;
    padding: 56px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.jn-award-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333333;
    margin: 0;
}

.jn-award-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 150%;
    color: #203E93;
    margin: 0;
}

.jn-award-divider {
    width: 301px;
    max-width: 100%;
    height: 1px;
    background: #D2D2D2;
    margin: 4px 0;
}

.jn-award-desc {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #727272;
    margin: 0;
}

/* ============================================================
   SECTION 9 — JELAJAHI KABAR TERBARU (EXACT FIGMA SPECS)
   ============================================================ */
.jn-news-section {
    background: #FFFFFF;
    padding: 94px 0;
}

.jn-news-header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 48px;
}

.jn-news-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.jn-news-tag {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4B698C;
    margin: 0;
    display: block;
}

.jn-news-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #1C252E;
    margin: 0;
}

.jn-news-btn {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #98A9BD;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #1E436F;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jn-news-btn:hover {
    background: #1E436F;
    color: #FFFFFF;
    border-color: #1E436F;
}

.jn-news-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-subtle);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.jn-news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.jn-news-img-wrapper {
    height: 220px;
    border-radius: 0;
}

.jn-news-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.jn-news-date {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted-text);
    margin-bottom: 8px;
}

.jn-news-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-heading);
    margin: 0 0 12px 0;
    line-height: 1.4;

    /* 2-line clamp */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jn-news-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-body-text);
    margin: 0 0 20px 0;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jn-news-link-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-blue-main);
    transition: gap var(--transition-fast);
}

.jn-news-card:hover .jn-news-link-btn {
    gap: 10px;
    color: var(--color-navy);
}

/* ============================================================
   SECTION 10 — CALL TO ACTION BANNER
   ============================================================ */
.jn-cta-section {
    background: var(--color-light-bg);
}

.jn-cta-card {
    background: linear-gradient(135deg, #000E4B 0%, #0B1B4F 50%, #162F65 100%);
    border-radius: var(--radius-2xl);
    padding: 64px 32px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: var(--shadow-lg);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.jn-cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    max-width: 720px;
    line-height: 1.25;
}

.jn-cta-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 36px 0;
    max-width: 620px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (Desktop, Macbook, Tablet, Mobile)
   ============================================================ */

/* 1. DESKTOP (>= 1440px) - Handled by default styles above */

/* 2. MACBOOK / LAPTOP (1024px to 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .jn-hero-title {
        font-size: 36px;
        line-height: 46px;
    }

    .jn-hero-img-wrapper {
        height: 360px;
    }

    .jn-about-title,
    .jn-section-title,
    .jn-cta-title {
        font-size: 30px;
    }

    .jn-about-img1,
    .jn-about-img2 {
        width: 191.83px;
        height: 364.48px;
    }

    .jn-services-header {
        gap: 40px;
        margin-bottom: 40px;
    }

    .jn-services-main-title {
        font-size: 30px;
        line-height: 38px;
    }

    .jn-services-header-right p {
        font-size: 16px;
        line-height: 24px;
    }

    .jn-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .jn-career-card {
        padding: 36px;
    }

    .jn-award-card,
    .tk-award-card {
        padding: 0;
        min-height: 380px;
    }

    .jn-award-content,
    .tk-award-content {
        padding: 36px 28px;
    }

    .jn-news-title {
        font-size: 30px;
    }
}

@media (max-width: 1279px) {
    .jn-program-inner {
        flex-direction: column-reverse !important;
        gap: 36px;
    }

    .jn-program-content {
        max-width: 100%;
        width: 100%;
    }

    .jn-program-media {
        width: 100%;
        height: 380px;
    }
}

/* 3. TABLET (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .jn-hero-section {
        padding-top: 110px;
    }

    .jn-hero-inner {
        max-width: 100%;
    }

    .jn-hero-title {
        font-size: 30px;
        line-height: 38px;
    }

    .jn-hero-bg-right {
        width: 40%;
        opacity: 0.7;
    }

    /* Tentang Section Tablet Responsive Fix */
    .jn-about-section {
        padding: 56px 0;
    }

    .jn-about-inner {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .jn-about-left {
        flex: none;
        width: 340px;
        height: 346px;
        margin: 0 auto;
    }

    .jn-about-images-group {
        position: relative;
        width: 340px;
        height: 346px;
        margin: 0 auto;
    }

    .jn-about-img1 {
        width: 160px;
        height: 305px;
        top: 0;
        left: 0;
    }

    .jn-about-img2 {
        width: 160px;
        height: 305px;
        top: 40px;
        left: 175px;
    }

    .jn-about-badge-logo {
        width: 116px;
        height: 116px;
        top: 92px;
        left: 105px;
        border-width: 5px;
    }

    .jn-about-right {
        width: 100%;
        align-items: flex-start;
    }

    .jn-about-title {
        font-size: 28px;
        line-height: 36px;
    }

    /* Layanan Kami Tablet Responsive 2-Column Grid */
    .jn-services-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 36px;
    }

    .jn-services-header-left,
    .jn-services-header-right {
        max-width: 50%;
        text-align: left;
    }

    .jn-services-header-right {
        text-align: right;
    }

    .jn-services-main-title {
        font-size: 28px;
        line-height: 34px;
    }

    .jn-services-header-right p {
        font-size: 15px;
        line-height: 22px;
    }

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

    .jn-service-card {
        height: 320px;
        border-radius: 24px;
    }

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

    .jn-career-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px;
    }

    .jn-award-card,
    .jn-award-card--reverse {
        flex-direction: column;
        min-height: auto;
        border-radius: 28px;
    }

    .jn-award-media {
        width: 100%;
        min-height: 260px;
        border-radius: 26px 26px 0 0;
        padding: 24px;
    }

    .jn-award-content {
        width: 100%;
        padding: 28px;
    }

    .jn-award-title {
        font-size: 24px;
    }

    .jn-award-desc {
        font-size: 15px;
    }

    .jn-news-title {
        font-size: 28px;
        line-height: 36px;
    }

    .jn-doc-nav-btn {
        display: none;
    }
}

/* 4. MOBILE (< 768px) */
@media (max-width: 767px) {
    .jn-hero-section {
        padding-top: 90px;
        padding-bottom: 48px;
    }

    .jn-hero-inner {
        max-width: 100%;
    }

    .jn-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jn-hero-content {
        max-width: 100%;
    }

    .jn-hero-bg-right {
        width: 100%;
        opacity: 0.25;
        clip-path: none;
    }

    .jn-hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .jn-hero-desc {
        font-size: 15px;
    }

    .jn-hero-card-wrap {
        justify-content: center;
        max-width: 100%;
    }

    .jn-hero-card-img-wrapper {
        height: 240px;
        border-radius: 24px;
    }

    /* Tentang Kami Section Mobile Responsive Fix */
    .jn-about-section {
        padding: 48px 0;
    }

    .jn-about-inner {
        flex-direction: column;
        align-items: center;
        gap: 36px;
        width: 100%;
    }

    .jn-about-left {
        flex: none;
        width: 290px;
        height: 295px;
        margin: 0 auto;
    }

    .jn-about-images-group {
        position: relative;
        width: 290px;
        height: 295px;
        margin: 0 auto;
    }

    .jn-about-img {
        position: absolute;
        object-fit: cover;
    }

    .jn-about-img1 {
        width: 138px;
        height: 262px;
        top: 0;
        left: 0;
        border-top-left-radius: 70px;
        border-top-right-radius: 70px;
        border-bottom-left-radius: 70px;
        border-bottom-right-radius: 0px;
    }

    .jn-about-img2 {
        width: 138px;
        height: 262px;
        top: 32px;
        left: 151px;
        border-top-left-radius: 0px;
        border-top-right-radius: 70px;
        border-bottom-right-radius: 70px;
        border-bottom-left-radius: 70px;
    }

    .jn-about-badge-logo {
        position: absolute;
        top: 82px;
        left: 95px;
        width: 100px;
        height: 100px;
        border-radius: 50px;
        background: #E9F6E7;
        border: 5px solid #FFFFFF;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        z-index: 5;
    }

    .jn-badge-logo-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .jn-about-right {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .jn-section-tag-blue {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 8px;
    }

    .jn-about-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 14px;
    }

    .jn-about-desc {
        font-size: 15px;
        line-height: 160%;
        margin-bottom: 12px;
    }

    .jn-services-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 36px;
    }

    .jn-services-header-left,
    .jn-services-header-right {
        max-width: 100%;
        text-align: center;
    }

    .jn-services-header-right p {
        text-align: center;
    }

    .jn-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .jn-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jn-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .jn-service-card {
        height: auto;
        min-height: 280px;
        border-radius: 24px;
    }

    .jn-service-card-overlay {
        position: relative;
        min-height: 280px;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-end;
        padding: 24px 20px;
        box-sizing: border-box;
        transition: background 0.4s ease;
    }

    .jn-service-card-title {
        text-align: left;
        width: 100%;
        font-size: 20px;
        line-height: 28px;
    }

    .jn-service-hover-content {
        text-align: left;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(10px);
        transition: max-height 0.45s ease, opacity 0.4s ease, transform 0.4s ease;
    }

    .jn-service-card.mobile-active .jn-service-hover-content,
    .jn-service-card:hover .jn-service-hover-content {
        max-height: 360px;
        opacity: 1;
        transform: translateY(0);
    }

    .jn-service-card.mobile-active .jn-service-card-bg,
    .jn-service-card:hover .jn-service-card-bg {
        transform: scale(1.05);
        filter: blur(3px);
    }

    .jn-service-card.mobile-active .jn-service-card-overlay,
    .jn-service-card:hover .jn-service-card-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.96) 100%);
    }

    .jn-why-card-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .jn-service-sublist {
        list-style: disc;
        padding-left: 20px;
        margin: 10px 0 0 0;
        text-align: left;
        font-size: 15px;
        line-height: 24px;
    }

    .jn-service-sublist li {
        text-align: left;
        margin-bottom: 4px;
    }

    .jn-service-btn-pill {
        display: none !important;
    }

    .jn-program-inner {
        flex-direction: column-reverse !important;
        gap: 32px;
    }

    .jn-program-content {
        max-width: 100%;
        width: 100%;
    }

    .jn-program-media {
        width: 100%;
        height: 320px;
    }

    .jn-program-title {
        font-size: 26px;
        line-height: 34px;
    }

    .jn-program-media {
        width: 100%;
        height: 260px;
    }

    .jn-award-card,
    .jn-award-card--reverse {
        flex-direction: column !important;
        min-height: auto;
        border-radius: 24px;
    }

    .jn-award-media {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 240px;
        height: 240px;
        border-radius: 20px;
    }

    .jn-award-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 28px 20px;
    }

    .jn-award-title {
        font-size: 22px;
    }

    .jn-cta-card {
        padding: 40px 20px;
        border-radius: var(--radius-xl);
    }

    .jn-cta-desc {
        font-size: 15px;
    }

    /* Documentation Mobile Carousel (3-Card Peeked Center Active matching Figma) */
    .jn-doc-section {
        overflow: hidden !important;
        padding: 44px 0 !important;
    }

    .jn-doc-carousel-wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    .jn-doc-stage {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        min-height: 250px !important;
        height: 250px !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .jn-doc-item {
        display: block !important;
        position: relative !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }

    .jn-doc-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .jn-doc-item--side {
        display: block !important;
        width: 42vw !important;
        max-width: 160px !important;
        height: 190px !important;
        opacity: 0.45 !important;
        flex-shrink: 0 !important;
        border-radius: 18px !important;
        filter: brightness(0.85);
        z-index: 1;
    }

    .jn-doc-item--center {
        display: block !important;
        width: 74vw !important;
        max-width: 290px !important;
        height: 240px !important;
        opacity: 1 !important;
        flex-shrink: 0 !important;
        border-radius: 22px !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15) !important;
        z-index: 2;
    }

    .jn-doc-nav-btn {
        position: absolute !important;
        top: 44% !important;
        transform: translateY(-50%) !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        background: #FFFFFF !important;
        color: #204093 !important;
        border: 1px solid #E2E8F0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
        cursor: pointer;
        z-index: 20 !important;
        transition: all 0.25s ease;
    }

    .jn-doc-prev {
        left: 0px !important;
    }

    .jn-doc-next {
        right: 0px !important;
    }

    .jn-doc-nav-btn:active {
        transform: translateY(-50%) scale(0.92) !important;
        background: #204093 !important;
        color: #FFFFFF !important;
    }

    .jn-doc-mobile-indicators {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        width: 100%;
    }

    .jn-doc-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #CBD5E1;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .jn-doc-dot.active {
        width: 24px;
        border-radius: 100px;
        background: #204093;
    }

    /* News Mobile Carousel (Show 1 card at a time with next/prev buttons) */
    .jn-news-carousel-wrapper {
        position: relative;
        width: 100%;
        padding: 0 6px;
        box-sizing: border-box;
    }

    .jn-news-grid {
        display: block;
        position: relative;
        width: 100%;
    }

    .jn-news-grid .art-card {
        display: none !important;
        width: 100%;
    }

    .jn-news-grid .art-card.mobile-active {
        display: flex !important;
        animation: fadeInNewsCard 0.35s ease forwards;
    }

    .jn-news-mobile-nav {
        display: block !important;
        position: static;
        width: 100%;
    }

    .jn-news-nav-btn {
        position: absolute !important;
        top: 42% !important;
        transform: translateY(-50%) !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        background: #FFFFFF !important;
        color: #204093 !important;
        border: 1px solid #E2E8F0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
        cursor: pointer;
        z-index: 20 !important;
        transition: all 0.25s ease;
    }

    .jn-news-prev {
        left: 0px !important;
    }

    .jn-news-next {
        right: 0px !important;
    }

    .jn-news-nav-btn:active {
        transform: translateY(-50%) scale(0.92) !important;
        background: #204093 !important;
        color: #FFFFFF !important;
    }

    .jn-news-mobile-indicators {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        width: 100%;
    }

    .jn-news-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #CBD5E1;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .jn-news-dot.active {
        width: 24px;
        border-radius: 100px;
        background: #204093;
    }
}

.jn-doc-mobile-indicators,
.jn-news-mobile-nav {
    display: none;
}

@keyframes fadeInDocCard {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInNewsCard {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}