@font-face {
    font-family: 'Satoshi';
    src: url('./fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
}
@font-face {
    font-family: 'Satoshi';
    src: url('./fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
}
@font-face {
    font-family: 'Satoshi';
    src: url('./fonts/Satoshi-Light.otf') format('opentype');
    font-weight: 300;
}
@font-face {
    font-family: 'Manrope';
    src: url('./fonts/Manrope-Regular.otf') format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'Manrope';
    src: url('./fonts/Manrope-SemiBold.otf') format('opentype');
    font-weight: 600;
}
@font-face {
    font-family: 'Manrope';
    src: url('./fonts/manrope-extrabold.otf') format('opentype');
    font-weight: 900;
}

.guest-journey-wrapper {
    background-color: #ebebeb2f !important;
}
.guest-journey-container {
    max-width: 1170px;
    width: 90%;
    /*height: 520px;*/
    background: linear-gradient(to bottom, #2F083B, #23275C, #214F9C);
    box-shadow: 2px 8px 18px rgba(0, 0, 0, 0.248);
    border-radius: 20px;
    position: relative; 
    overflow: hidden;
    margin: 0 auto;
    padding: 0 20px ;
    box-sizing: border-box;
}

.journey-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 30px;
    letter-spacing: 0px;
    margin: 0;
    text-align: center;
    margin-top: 40px;
    /*position: absolute;*/
    /*top: 40px;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    z-index: 10;
}

.journey-diagram {
    position: absolute;
    /*top: 55%; */
    /*left: 160px; */
    /*transform: translateY(-50%);*/
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 1;
}

.center-logo {
    /*position: absolute;*/
    /*top: 55%; */
    /*left: 160px; */
    /*transform: translateY(-50%);*/
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; 
    pointer-events: none; 
}

.diagram-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #003062 0deg, #728DBB 60deg, #3FA49F 120deg, 
        #7964AC 180deg, #AB873D 240deg, #80594C 300deg, #003062 360deg  
    );
    -webkit-mask: radial-gradient(transparent 69%, black 69.5%);
    mask: radial-gradient(transparent 69%, black 69.5%);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
    opacity: 0.9;
    z-index: 1;
}

.glow-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 2; 
    pointer-events: none; 
    --glow-rgb: 0, 102, 209; 
    background: conic-gradient(
        from 0deg,
        transparent 0%, transparent 20%, 
        rgba(var(--glow-rgb), 0.1) 50%, 
        rgba(var(--glow-rgb), 0.8) 90%,    
        #ffffff 100%                       
    );
    -webkit-mask: radial-gradient(transparent 69%, black 69.5%);
    mask: radial-gradient(transparent 69%, black 69.5%);
    filter: drop-shadow(0 0 8px rgba(var(--glow-rgb), 0.8)) blur(4px);
    mix-blend-mode: screen; 
    transform: rotate(var(--rotation, 0deg));
    transition: background 0.3s ease;
}

.center-light {
    position: absolute;
    z-index: 1; 
    top: 59%;   
    left: 50%;  
    width: 40%; 
    height: auto;
    opacity: 0.8;
    filter: blur(25px);
    transform: translate(-50%, -50%);
}

.center-logo .main-logo {
    position: relative;
    z-index: 2; 
    max-width: 33%; 
    height: auto;
    display: block;
}

.circle-node {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--node-color);
    border: 2px solid #838383; 
    box-sizing: border-box; 
    box-shadow: none;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    pointer-events: auto; 
}

.circle-node.active, 
.circle-node:hover {
    border-color: #FFFFFF; 
    box-shadow: 0 0 15px var(--node-color); 
    z-index: 10; 
}

.circle-node img {
    width: 55%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.5s ease;
    opacity: 0.5; 
}

.circle-node.active img,
.circle-node:hover img { 
    opacity: 1; 
}

.node-1 { top: 0; left: 50%; transform: translate(-50%, -50%); }
.node-2 { top: 25%; right: 6.7%; transform: translate(50%, -50%); }
.node-3 { bottom: 25%; right: 6.7%; transform: translate(50%, 50%); }
.node-4 { bottom: 0; left: 50%; transform: translate(-50%, 50%); }
.node-5 { bottom: 25%; left: 6.7%; transform: translate(-50%, 50%); }
.node-6 { top: 25%; left: 6.7%; transform: translate(-50%, -50%); }

.node-1.active, .node-1:hover { transform: translate(-50%, -50%) scale(1.2) !important; }
.node-2.active, .node-2:hover { transform: translate(50%, -50%) scale(1.2) !important; }
.node-3.active, .node-3:hover { transform: translate(50%, 50%) scale(1.2) !important; }
.node-4.active, .node-4:hover { transform: translate(-50%, 50%) scale(1.2) !important; }
.node-5.active, .node-5:hover { transform: translate(-50%, 50%) scale(1.2) !important; }
.node-6.active, .node-6:hover { transform: translate(-50%, -50%) scale(1.2) !important; }

.node-num {
    position: absolute;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 10px; 
    color: rgba(255, 255, 255, 0.9);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.node-1 .node-num { top: 50px; left: 50%; transform: translateX(-50%); }
.node-2 .node-num { bottom: -15px; left: -25px; }
.node-3 .node-num { top: -15px; left: -25px; }
.node-4 .node-num { top: -40px; left: 50%; transform: translateX(-50%); }
.node-5 .node-num { top: -15px; right: -25px; }
.node-6 .node-num { bottom: -15px; right: -25px; }

.journey-diagram.hiding-numbers .node-num { opacity: 0; }
.journey-diagram.hiding-numbers .node-1 .node-num { top: 10px; }
.journey-diagram.hiding-numbers .node-4 .node-num { top: 10px; }
.journey-diagram.hiding-numbers .node-2 .node-num { bottom: 10px; left: 10px; }
.journey-diagram.hiding-numbers .node-3 .node-num { top: 10px; left: 10px; }
.journey-diagram.hiding-numbers .node-5 .node-num { top: 10px; right: 10px; }
.journey-diagram.hiding-numbers .node-6 .node-num { bottom: 10px; right: 10px; }

.journey-info {
    /*position: absolute;*/
    /*right: 105px; */
    /*top: 53%;    */
    /*transform: translateY(-50%);*/
    max-width: 500px;
    min-height: 420px;
    display: flex;
    gap: 80px;
    align-items: center; 
    color: #fff;
    z-index: 20;
    pointer-events: none; 
}

.info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    padding-top: 15px;
    gap: 6px; 
    pointer-events: auto; 
    height: 100%; 
    margin-left: -40px; 
}

.pagination-container {
    display: flex;
    gap: 6px;
    margin-bottom: 8px; 
}

.page-dot {
    width: 8px;   
    height: 8px;  
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.3); 
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
}

.page-dot.active {
    width: 40px; 
    background-color: var(--active-color, #0066D1); 
    box-shadow: 0 0 10px var(--active-color, #0066D1); 
}

.info-title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 24px; 
    margin: 0 0 -3px 0; 
    margin-top: 10px; 
    line-height: 1.1;
    height: 55px; 
    display: flex;
    align-items: flex-start;
}

.info-section.pain-section {
    /*height: 140px; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.info-section h3 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 700; 
    font-size: 16px; 
    margin: 0 0 6px 0; 
    color: #ffffff; 
}

.info-section p, 
.pain-content p {
    font-family: 'Satoshi', sans-serif;
    font-weight: 300; 
    font-size: 14px; 
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 6px 0; 
    line-height: 1.4;
}

.info-section p::before,
.pain-content p::before {
    content: "•";
    display: inline-block;
    margin-right: 5px;
    transform: scale(1.2); 
    color: rgba(255, 255, 255, 0.8);
}

.info-checklist {
    list-style: none;
    padding: 0;
    margin: 2px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px; 
    min-height: 80px; 
}

.info-checklist li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px; 
    color: rgba(255, 255, 255, 0.9);
}

.check-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--active-color, #0066D1);
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.check-icon img {
    width: 8px; 
    height: auto;
    display: block;
}

.anim-up {
    opacity: 0;
    animation: fadeInUp 0.3s ease-out forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.guest-journey-container.no-media .info-text {
    margin-left: 60px;
    /*margin-top: 45px;*/
}


.guestContentBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
.guestListBox{
    position: relative;
    display: flex;
    /*height: 420px;*/
    align-content: center;
    justify-content: center;
    flex-direction: column;
}
.guestListBox1{
    margin-right: 60px;
}
@media (max-width: 1030px) {
    .guestListBox1{
        margin-right: 0;
    }
    .info-text{
        margin-left: 30px !important;
    }
}
@media (max-width: 950px) {
    .guestContentBox{
        margin-top: 40px;
    }
    .info-text{
        padding-top: 35px !important;
        margin-left: 0 !important;
    }
}