﻿html, body {
    position: relative;
    background-color: #fff;
    background-image: url('/Content/images/backgrounds/cignal-load-bg-v2.svg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.cignal-load-container {
    max-width: 1312px;
    margin: 40px auto;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 45px;
    width: 100%;
}

.cignal-lead-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cignal-load-assistance {
    font-size: var(--font-size-head-08);
    font-style: italic;
    font-weight: 700;
    color: var(--clr-text-neutral-700);
}

.steps-for-reloading {
    color: var(--clr-text-accent);
    font-weight: 600;
    font-style: normal;
    cursor: pointer;

}


.cignal-load-header {
    /*  text-align: center;*/
    font-size: var(--font-size-hero-title);
    font-weight: 800;
    font-family: var(--font-family-head);
    color: var(--clr-text-black);
}

.cignal-load-lead {
    width: 100%;
    font-family: var(--font-family-body);
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--clr-text-neutral-700);
}

.cignal-load-instruction {
    width: 100%;
    font-family: var(--font-family-body);
    font-style: italic;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--clr-text-neutral-700);
}

.cignal-load-instruction-link {
    width: 100%;
    font-family: var(--font-family-body);
    font-style: normal;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--clr-text-accent);
}

.iframe-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: auto !important;
}

.iframe-responsive {
    width: 100%;
    /*max-width: 500px;*/
    height: 650px;
    border: none;
    overflow: hidden;
}

.touchpoint-cards {
    display: flex;
    gap: 24px;
    width: auto;
    height: auto;
}

.touchpoint-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    width: 49%;
    height: auto;
    flex: 0 0 auto;
    background: #FFFFFF;
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    margin-top: 15px;
    border-radius: 24px;
    border: none;
    background: var(--clr-bg-tertiary);
    padding: 1px;
    position: relative;
    z-index: 0;
    filter: drop-shadow(0px 4px 6px rgba(60, 60, 60, 0.2));
}

    .touchpoint-card::before {
        content: "";
        position: absolute;
        top: 1px;
        left: 1px;
        right: 1px;
        bottom: 1px;
        background: #FFFFFF;
        border-radius: 23px;
        z-index: -1;
    }

.touchpoint-card-content {
    display: flex;
    flex-direction: column;
    padding: 24px;
    width: 100%;
    height: 100%;
}

.touchpoint-card-title {
    font-family: var(--font-family-head);
    font-size: 24px;
    font-weight: 800;
    color: #121212;
    text-shadow: 0 2.8px 8.4px rgba(30, 215, 96, 0.1);
}

.touchpoint-card-info {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    min-height: 240px;
    flex: 1 1 auto;
}

.touchpoint-info-box {
    flex: 1;
    border: 1px solid rgba(125, 125, 125, 0.5);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.touchpoint-info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-family: var(--font-family-body);
    font-size: 16px;
    color: #2B2B2B;
}

    .touchpoint-info-row a {
        color: #000;
    }

    .touchpoint-info-row svg {
        height: 24px;
        width: 24px;
        flex-shrink: 0;
    }

    .touchpoint-info-row span {
        line-height: 24px;
    }

.touchpoint-info-multiline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .touchpoint-info-multiline span {
        line-height: 24px;
    }

.touchpoint-bold {
    font-weight: 800;
}

    .touchpoint-bold a {
        font-weight: 800;
        text-decoration: none;
    }

/* Steps Reloading Modal */
.steps-reloading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.steps-reloading-modal.active {
    opacity: 1;
    visibility: visible;
}

.steps-reloading-modal-container {
    background: var(--clr-bg-senary);
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateY(50px) scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.steps-reloading-modal.active .steps-reloading-modal-container {
    transform: translateY(0) scale(1);
}

.steps-reloading-modal-header {
    position: relative;
    background: var(--clr-bg-senary);
    padding: 24px 32px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    display: flex;
    justify-content: space-between;
/*    align-items: center;*/
    gap: 20px;
    flex-shrink: 0;
}

.steps-reloading-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
/*    align-items: center;*/
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.steps-reloading-close:hover {
    opacity: 0.8;
}


.steps-reloading-container {
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    background: var(--clr-bg-senary);
    padding: 24px 32px;
    padding: 0 32px 24px 32px;
    gap: 12px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    scrollbar-width: thin;
}




.steps-reloading-header {
    color: white;
    font-size: var(--font-size-head-05);
    font-weight: 800;
    font-family: var(--font-family-head);
    margin: 0;
    flex: 1;
}

.steps-reloading-sub-container {
    background: white;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

    .steps-reloading-text-container > p {
        font-family: var(--font-family-body);
        color: var(--clr-text-neutral-500);
    }

.reloading-steps-header {
    font-size: var( --font-size-body-01);
    margin-bottom: 8px;
    font-weight: 600;
}

.reloading-steps-description {
    font-size: var(--font-size-body-04);
    font-weight: 400;
}

.reloading-svg-container {
    width: 60px;
    height: 60px;
    background: var(--clr-bg-senary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    aspect-ratio: 1/1;
}
/* --- Responsive styles copied from hero-article.css --- */
@media screen and (max-width: 1400px) {
    .cignal-load-container {
        max-width: 90%;
    }
}

@media screen and (max-width: 992px) {
    .cignal-load-header {
        font-size: var(--font-size-hero-title-md);
        line-height: 1.2;
    }

    .touchpoint-cards {
        flex-direction: column;
    }

    .touchpoint-card {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .iframe-container {
        padding: 0px 15px;
    }
}

@media screen and (max-width: 768px) {
    .cignal-load-container {
        padding: 20px 16px;
        border-radius: 24px;
    }

    .cignal-load-header {
        font-size: var(--font-size-hero-title-sm);
        margin-top: 8px;
        margin-bottom: 20px;
    }

    .touchpoint-cards {
        flex-direction: column;
    }

    .touchpoint-card {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 576px) {
    .cignal-load-container {
        padding: 10px 14px;
    }

    .cignal-load-header {
        font-size: var(--font-size-hero-title-xs);
        line-height: 1.2;
        margin-top: 6px;
        margin-bottom: 16px;
    }

    .touchpoint-cards {
        flex-direction: column;
        padding-bottom: 15px;
    }

    .touchpoint-card {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .iframe-container {
        padding: 0px 15px;
    }

    .touchpoint-card-info {
        flex-direction: column;
    }

    .steps-reloading-header {
        font-size: var(--font-size-head-06);
    }

    .steps-reloading-modal {
        padding: 8px;
    }

    .steps-reloading-modal-container {
        max-height: 95vh;
    }

    .steps-reloading-container {
        overflow-y: auto;
    }

    .steps-reloading-modal-header {
        padding: 16px 20px;
    }

    .steps-reloading-container {
        padding: 0 16px 16px 16px;
    }

    .steps-reloading-sub-container {
        padding: 16px;
    }

    .reloading-svg-container {
        width: 40px;
        height: 40px;
    }

        .reloading-svg-container > svg {
            width: 20px;
            height: 20px;
        }

    .reloading-steps-header {
        font-size: var(--font-size-head-08)
    }

    .reloading-steps-description {
        font-size: var(--font-size-body-05);
    }

    .steps-reloading-container {
        gap: 8px;
    }

    .steps-reloading-sub-container{
        gap: 16px;
    }
}
