


html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding-top: 8rem;
    transition: background-color 0.5s ease;
}

.terms-content {
    height: 70vh;
}

.br-mobile,
.br-belief-mobile {
    display: none;
}



.is-resizing * {
    transition: none !important;
}



.no-scroll {
    overflow: hidden;
    
    
    padding-right: calc(100vw - 100%);
}






.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8rem;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}


.navbar-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100%;
}


.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 9vw;
    width: 100%;
    max-width: 1445px;
}



.navbar.is-hidden {
    transform: translateY(-100%);
}




.logo-container {
    height: 3.2rem;
}

.company_logo {
    height: 6.5rem;
    margin-top: -1.2rem;
}






button {
    background-color: transparent;
    border: none;
}

.navbar nav>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 3.6rem;
    text-decoration: none !important;
}


.navbar nav a {
    text-decoration: none;
    font-weight: bold;
}

a {
    text-decoration: none;
}

.language-button {
    color: grey;
    font-size: 1.3rem;
}

.lang-options {
    color: #333;
    font-size: 1.45rem;

}

.chief-buttons {
    font-size: 1.75rem;
    margin-top: 3rem;
    display: block;
    color: #333;
}


.nav-button,
.nav-link {
    transition: color 0.3s ease;
}

.nav-button:hover,
.nav-link:hover {
    color: #28a745;
}


.button-group-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.language-switcher {
    position: relative;
    margin-top: 1rem;
    visibility: hidden;
}



.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    list-style: none;
    margin: 0.9rem -.6rem 0 0;
    padding: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.language-switcher.is-active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.language-menu li a {
    display: block;
    padding: 1rem 2rem;
    white-space: nowrap;

    
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}


.language-menu li a:hover {
    
    color: #28a745;
}





.fade-out {
    opacity: 0 !important;
    transition: opacity 0.4s ease-out;
}

#main-content {
    opacity: 1;
    transition: opacity 0.4s ease-in;
}








.is-resizing * {
    transition: none !important;
}



.hamburger-button {
    display: none;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    position: relative;
    width: 40px;
    height: 40px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: -1rem;
    
    -webkit-tap-highlight-color: transparent;

    
    outline: none;
}

.hamburger-button .line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #333;
    margin: 5px auto;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



.hamburger-button.is-active {
    
    padding-right: 4.5rem;
}

.hamburger-button.is-active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger-button.is-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}





.is-resizing * {
    transition: none !important;
}


















.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 999;

    opacity: 0;
    visibility: hidden;

    
    
    transition: opacity 0.5s ease, visibility 0.5s ease;
}


.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;

    
    
    transition: opacity 0.2s ease, visibility 0.2s ease;
}


.mobile-nav ul {
    height: 100%;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;

    opacity: 0;
    transform: translateX(30px);

    
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.mobile-nav.is-open ul {
    opacity: 1;
    transform: translateX(0);

    
    
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
        transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}


.mobile-nav a {
    font-size: 2.2rem;
    font-weight: bold;
    text-decoration: none;
}


.language-links-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
    padding-top: 3rem;
    border-top: 1px solid #eee;
}

.language-links-mobile a {
    font-size: 1.6rem;
    font-weight: normal;
}

.mobile-nav-button-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 70vh;
    margin-top: -6rem;
}

.nav-mobile {
    margin-top: 10rem;
}

.mobile-nav-button {
    margin-left: 5vw;
    color: black;
    transition: .2s ease;
    cursor: pointer;
}

.mobile-nav-button:hover {
    color: #28a745;
    transition: .2s ease;
}










.center-range {
    width: 80vw;
    max-width: 1440px;
    margin: 0 auto;
}

.section0-content {
    height: 7vh;
}

.terms-content {
    font-weight: 500;
}


.tac-opening-heading {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 3.2rem;
    font-weight: 350;
}

.tac-opening-reminder {
    margin-top: 8rem;
    font-size: 1.8rem;
    width: 50vw;
}

.tac-opening-table-of-contents-Container {
    margin-top: 8rem;
}

.table-of-contents-text {
    font-weight: 350;
    font-size: 1.8rem;
}



.tac-main-content-section {
    font-weight: 350;
    font-size: 1.8rem;
    margin-top: 6rem;
    padding-bottom: 60rem;
}


.clause-section {
    margin-top: 10rem;
}

.indent-text {
    margin-left: 4.5rem;
    width: 50vw;
}


.terms-content {
    height: 70vh;
}


.center-range {
    width: 60vw;
    margin: 0 auto;
}

.section0-content {
    height: 10vh;
}



.terms-content {
    font-weight: 500;
}


.tac-opening-heading {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 3.2rem;
    font-weight: 350;
}

.tac-opening-reminder {
    margin-top: 8rem;
    font-size: 1.8rem;
    width: 50vw;
}

.tac-opening-table-of-contents-Container {
    margin-top: 8rem;
}

.table-of-contents-text {
    font-weight: 350;
    font-size: 1.8rem;
}



.tac-main-content-section {
    font-weight: 350;
    font-size: 1.8rem;
    margin-top: 6rem;
    padding-bottom: 6rem;
}


.clause-section {
    margin-top: 10rem;
}

.indent-text {
    margin-left: 4.5rem;
    width: 50vw;
}




















































































.belief-statement {
    text-align: left;
    font-size: 2.3rem;
    font-weight: 500;
    margin-top: 2.8rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #eee;
}

.belief-logo-blue {
    color: #28a745;
    color: black;
}























.video-loader-chunk {
    width: 100%;
    height: 60vh;
    

    
    max-height: 720px;
    
    min-height: 400px;
    

    position: relative;
    overflow: hidden;
    background-color: #000000;
    border-radius: 12px;
    
    margin-top: 20px;

    
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}




.explore-arrow-chunk {
    width: 100%;
    height: 10vh;
    min-height: 8rem;
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.explore-content-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.moving-arrow {
    animation: pondFloat 3s ease-in-out infinite;
    display: flex;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    color: #333333;
}

.stationary-text {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555555;
}

@keyframes pondFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0);
    }
}
















.before-after-chunk {
    
    width: 80vw;
    max-width: 1440px;
    margin: 15rem auto 0 auto;
    display: flex;
    flex-direction: column;
}

.before-after-headline {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
    text-align: left;
    margin-bottom: 5rem;
}

.before-after-lower-headline {
    display: block;
    font-size: 5.2rem;
    margin-top: 1rem;
}


.before-after-gallery {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    align-items: flex-start;
}

.before-card {
    flex: var(--left-weight, 1);
    display: flex;
    flex-direction: column;
}

.after-card {
    flex: var(--right-weight, 1);
    display: flex;
    flex-direction: column;
}


.zero-crop-image-wrapper {
    width: 100%;
    background-color: transparent;
    border-radius: 6px;
    overflow: hidden;

    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.zero-crop-image {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}


.media-caption {
    margin-top: 2rem;
    font-size: 1.7rem;
    line-height: 1.5;
    color: rgb(108, 108, 108);
    font-weight: 400;
    text-align: left;
}

.lower-media-caption {
    text-align: right;
}

.caption-highlight {
    font-size: 2.4rem;
    font-weight: 800;
    color: #000000;
}

.footnote-link {
    color: inherit;
    text-decoration: none;
}

sup {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555555;
    line-height: 0;
    vertical-align: super;
}

.before-after-text-container {
    width: 72vw;
    min-width: 72rem;
}

.before-after-paragraph {
    margin-top: 16rem;
    font-size: 2.2rem;
    line-height: 1.6;
    color: rgb(108, 108, 108);
    margin-bottom: 10rem;
    width: 52rem;
    margin-left: 10vw;
}














.main-services-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10vh;
}




.service-container {
    width: 37.6vw;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;

    
    padding: 1.2rem;
    border-radius: 0.8rem;
    
    border: 0.1rem solid transparent;
    transition: border-color 0.2s ease;
}




.service-image-wrapper {
    width: 100%;
    aspect-ratio: 8.5 / 6;

    
    position: relative;
    overflow: hidden;
    border-radius: 0.4rem;

    
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.service-image {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    /* Hardware-accelerated animation. 
       We explicitly define the base scale(1) so the browser knows the exact starting math. */
    transform: scale(1);
    transition: transform 0.4s ease, filter 0.4s ease;
    will-change: transform;
    
    filter: brightness(1);
}




.service-title {
    font-size: 2.6rem;
    font-weight: 600;
    margin-top: 3vh;
    margin-bottom: 0;
    color: #111111;
}

.service-description-text {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 1.6vh;
    color: #555555;
    flex-grow: 1;
}

.highlight-service-detail {
    font-size: 1.8rem;
}

.service-button {
    margin-top: 4vh;
    align-self: flex-start;
    color: #0066cc;
    font-size: 2.2rem;
    font-weight: 500;
    text-transform: capitalize;
}






.service-container:hover {
    border-color: #000000;
}


.service-container:hover .service-image {
    transform: scale(1.1);
    transition: 0.3s ease;
    filter: brightness(1.1);
}
















.square-text-media-chunk {
    width: 80vw;
    max-width: 1440px;
    margin: auto 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10rem;
}

.features-chunk {
    padding-bottom: 12rem;
}


.leftside-text-container {
    display: flex;
    flex-direction: column;
    flex: 1;
}




.rightside-square-media-container {
    flex: 0 0 40%;
    
    width: 40%;
    border-radius: 0.8rem;
    overflow: hidden;
    background-color: transparent;
    max-width: 48rem;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}




.square-intro-headline {
    font-weight: 700;
    line-height: 1.2;
    color: black;
}

.features-intro-headline {
    font-size: 5.3rem;
    margin-bottom: 5rem;
    min-width: 53rem;
}

.privacy-intro-headline {}

.privacy-upper-headline {
    margin-left: -2.7rem;
}



.square-description-text {
    font-size: 2rem;
    line-height: 1.6;
    color: rgb(108, 108, 108);
    margin: 0;
    margin-top: 5rem;
}


.square-media-content {
    width: 100%;
    height: auto;
    
    display: block;
    pointer-events: none;
}

.features-media-content {
    width: 80%;
}

.USB-media-content {
    width: 60%;
}

.whatsapp-headline {
    font-size: 3.8rem;
}


.whatsapp-lower-headline {
    display: block;
    margin-top: 1.6rem;
    font-size: 4.6rem;
    color: #309555;
    margin-bottom: 5rem;
}

.first-feature-chunk {
    margin-top: 23vh;
}






.qa-section {
    width: 100%;
    margin-top: 15rem;
}


.qa-center-vault {
    width: 80vw;
    max-width: 800px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    
}

.qa-headline {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    margin: 0 0 4rem 0;
    color: #111111;
}


.qa-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.qa-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    
    border-color: #d2d2d7;
}


.qa-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2.4rem;
    

    display: flex;
    flex-direction: row;
    
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    

    cursor: pointer;
    transition: background-color 0.3s ease;
}

.qa-question:hover {
    background-color: #f5f5f7;
    
}

.qa-question-text {
    font-size: 2.2rem;
    font-weight: 600;
    color: #111111;
    text-align: left;
    line-height: 1.4;
}


.qa-arrow {
    width: 2.5rem;
    height: 2.5rem;
    color: #0066cc;
    
    flex-shrink: 0;
    
    margin-top: 4px;
    

    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
}

.qa-question[aria-expanded="true"] .qa-arrow {
    transform: rotate(-180deg);
}


.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.qa-answer-inner {
    padding: 0 2.4rem 3rem 6.4rem;
    
}

.qa-answer-inner p {
    margin: 0 0 2rem 0;
    line-height: 1.7;
    
    font-size: 1.9rem;
    color: #000000;
}

.qa-answer-inner p:last-child {
    margin-bottom: 0;
}






@media only screen and (min-width: 2450px) {
    .qa-center-vault {
        max-width: 100rem;
    }

    
    .qa-headline {
        font-size: 4.8rem;
    }

    .qa-question-text {
        font-size: 2.8rem;
    }

    .qa-answer-inner p {
        font-size: 2.2rem;
    }

    .qa-arrow {
        width: 3.2rem;
        height: 3.2rem;
        margin-top: 0.6rem;
    }
}




@media only screen and (max-width: 1024px) {
    .qa-center-vault {
        width: 80vw;
    }
}


@media only screen and (max-width: 768px) {
    .qa-center-vault {
        width: 92vw;
    }

    .qa-question {
        padding: 2rem 1.5rem;
        
        gap: 1.5rem;
    }

    .qa-question-text {
        font-size: 2rem;
    }

    .qa-answer-inner p {
        font-size: 1.8rem;
    }

    
    .qa-answer-inner {
        padding: 0 1.5rem 2rem 1.5rem;
    }
}


@media only screen and (max-width: 480px) {
    .qa-headline {
        font-size: 3.2rem;
    }

    .qa-question-text {
        font-size: 2rem;
    }
}














.closing-option-chunk {
    width: 100%;
    margin-top: 15rem;
    
}


.closing-options-grid {
    display: grid;
    
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    
    width: 100%;
}


.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    text-align: center;
    

    
    padding: 4rem 2rem;
    border-radius: 1.6rem;
    

    text-decoration: none;
    
    color: inherit;
    background-color: transparent;
    

    
    transition: background-color 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}


.option-card:hover {
    background-color: #f5f5f7;
    
    
    transform: translateY(-0.2rem);
}


.option-icon {
    width: 4.8rem;
    
    height: 4.8rem;
    object-fit: contain;
    
    margin-bottom: 2rem;
}


.option-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 1rem 0;
}

.option-description {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #555555;
    margin: 0 0 2rem 0;
    
    flex-grow: 1;
}


.option-link {
    font-size: 1.6rem;
    font-weight: 500;
    color: #0066cc;
    
    display: flex;
    align-items: center;
    gap: 0.5rem;
    
}







@media screen and (max-width: 48rem) {

    .closing-options-grid {
        
        grid-template-columns: 1fr;
        gap: 1rem;
        
    }

    .option-card {
        padding: 3rem 2rem;
        

        
        
    }

    .option-card:hover {
        transform: translateY(0);
        
    }
}










/* =========================================================
   CHUNK B: INLINE LINK-BUTTON (CSS) — BUG-FIXED VERSION
   - Avoids layout-changing hover properties
   - Uses box-shadow + text-shadow to simulate 3D + bold
   - Smooth, gentle transitions; respects reduced-motion
========================================================= */

.text-with-inline-link {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: #111;
    line-height: 1.45;
    font-size: 1rem;
    margin: 0 0 1rem 0;
}


.inline-link-btn {
    display: inline-flex;
    align-items: center;
    vertical-align: baseline;
    padding: 0.36rem 0.72rem;
    
    font-size: 1.8rem;
    line-height: 1;
    border-radius: 0rem;
    text-decoration: none;
    background-color: #ffffff;
    color: #0d0d0d;
    border: 1px solid rgba(15, 20, 25, 0.06);
    box-shadow: 0 6px 14px rgba(12, 16, 20, 0.06);
    
    cursor: pointer;
    font-weight: 500;
    
    -webkit-font-smoothing: antialiased;
    transition:
        background-color 220ms cubic-bezier(.2, .9, .3, 1),
        color 180ms ease,
        box-shadow 220ms ease,
        text-shadow 200ms ease;
    will-change: background-color, box-shadow, color, text-shadow;
    white-space: nowrap;
    
}


.inline-link-btn:hover,
.inline-link-btn:focus {
    background-color: #2f3438;
    
    color: #ffffff;
    
    text-shadow: 0 0 0.75px rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 26px rgba(16, 20, 24, 0.14);
    
}


.inline-link-btn:active {
    box-shadow: 0 8px 18px rgba(12, 16, 20, 0.12);
    
    filter: brightness(0.98);
}


.inline-link-btn:focus-visible {
    outline: none;
    box-shadow:
        0 8px 20px rgba(16, 20, 24, 0.12),
        0 0 0 4px rgba(66, 133, 244, 0.12);
    
    border-color: rgba(66, 133, 244, 0.25);
}


.inline-link-btn,
.inline-link-btn * {
    font-family: inherit;
    text-transform: none;
    line-height: inherit;
}


@media (max-width: 480px) {
    .inline-link-btn {
        padding: 0.48rem 0.88rem;
        font-size: 1rem;
    }
}


@media (prefers-reduced-motion: reduce) {

    .inline-link-btn,
    .inline-link-btn:hover,
    .inline-link-btn:focus,
    .inline-link-btn:active {
        transition: none !important;
    }
}



















.disclaimer-chunk {
    width: 100%;
    
    background-color: white;

    padding-top: 4rem;
    padding-bottom: 6rem;
    margin-top: 10rem;
    
}


.disclaimer-list {
    list-style: none;
    
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    
}


.disclaimer-item {
    display: flex;
    align-items: flex-start;
    
    gap: 0.8rem;
    

    
    font-size: 1.2rem;
    line-height: 1.5;
    color: #6e6e73;
}


.disclaimer-number {
    flex-shrink: 0;
    
    min-width: 1.6rem;
    
    text-align: right;
    
}

.disclaimer-text {
    margin: 0;
}


.disclaimer-general {
    margin-top: 2.4rem;
    
    padding-top: 2.4rem;
    border-top: 0.1rem solid #d2d2d7;
    

    font-size: 1.2rem;
    line-height: 1.5;
    color: #6e6e73;
}

.disclaimer-general p {
    margin: 0 0 1.2rem 0;
    
}

.disclaimer-general p:last-child {
    margin-bottom: 0;
}




@media screen and (max-width: 48rem) {
    .disclaimer-chunk {
        
        padding-top: 3rem;
        padding-bottom: 4rem;
        margin-top: 6rem;
    }

    .disclaimer-item,
    .disclaimer-general {
        /* 🛡️ ACCESSIBILITY FIX: Bumps the font size up slightly on mobile 
           so users do not have to squint or zoom to read the legal text */
        font-size: 1.3rem;
    }
}









.contact-trigger-btn {
    font-weight: bold;
    cursor: pointer;
}

.contact-trigger-btn:hover {
    color: #28a745;
}




.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    
    
    background-color: rgba(0, 0, 0, 0.35);

    backdrop-filter: blur(4px);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.4s ease, visibility 0.4s ease;
}


.contact-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}




.contact-modal-box {
    background-color: #ffffff;
    width: 80rem;
    
    max-width: 80vw;
    
    min-height: 28rem;
    

    position: relative;
    
    padding: 8rem 6rem;
    
    border-radius: 0.4rem;
    

    
    transform: translateY(2rem);
    transition: transform 0.4s ease;
}

.contact-modal-overlay.is-active .contact-modal-box {
    transform: translateY(0);
}




.contact-modal-close {
    position: absolute;
    top: 2rem;
    right: 3rem;

    display: flex;
    align-items: center;
    gap: 0.8rem;

    background: transparent;
    border: none;
    cursor: pointer;
    color: #555555;
    transition: color 0.3s ease;

    
    padding: 1rem;
}

.contact-modal-close:hover {
    color: #000000;
}

.cross-icon {
    width: 2.4rem;
    height: 2.4rem;
}

.close-text {
    font-size: 1.6rem;
    font-weight: 500;
}




.contact-modal-headline {
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: #111111;
    margin: 0 0 4.5rem 0;
    max-width: 90%;
}

.contact-modal-subtext {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #555555;
    margin: 0 0 4rem 0;
    margin-top: 2rem;
}

.contact-modal-details p {
    font-size: 1.8rem;
    color: #111111;
    margin: 0 0 1.5rem 0;
}

.payment-notice {
    margin-top: 4rem;
    font-size: 1.7rem;
    color: #666666;
}




@media screen and (max-width: 768px) {
    .contact-modal-box {
        padding: 6rem 3rem 4rem 3rem;
        
        min-height: auto;
        
    }

    .contact-modal-close {
        top: 1rem;
        right: 1rem;
    }

    .contact-modal-headline {
        font-size: 3rem;
        max-width: 100%;
    }
}





@media (max-width: 980px) {

    .contact-trigger-btn {
        color: black;
        font-size: 2.2rem;
    }
}




.final-closing-chunk.light-version {
    width: 100%;
    background-color: #ffffff;
    
    color: #000000;
    

    padding-top: 10vh;
    padding-bottom: 5vh;
    margin-top: 15rem;
    
    border-top: 0.1rem solid #d2d2d7;
}

.closing-center-range {
    width: 80vw;
    margin: 0 auto;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.closing-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 8rem;
}

.closing-info-title {
    font-size: 2.2rem;
    font-weight: 700;
    
    margin: 0 0 2rem 0;
    color: #000000;
}


.closing-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.closing-info-list li {
    font-size: 1.6rem;
    color: #4b4b4b;
    
    line-height: 1.5;
    position: relative;
    padding-left: 1.8rem;
}

.closing-info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    
    font-size: 1.6rem;
}

.closing-info-list li.closing-notice-text {
    margin-top: 1.5rem;
    color: rgb(108, 108, 108);
    
    padding-left: 0;
}

.closing-info-list li.closing-notice-text::before {
    content: none;
}


.closing-bottom-content {
    
    border-top: 0.1rem solid #d2d2d7;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}

.closing-payment-disclaimer {
    font-size: 1.5rem;
    color: #4b4b4b;
    margin: 0;
    text-align: center;
}

.closing-copyright-text {
    font-size: 1.5rem;
    color: #86868b;
    margin: 0;
    text-align: center;
}


.contact-highlight {
    color: black;
    font-weight: 500;
}

.closing-notice-text {
    max-width: 38rem;
}




















@media only screen and (max-width: 1200px) {
    .belief-statement {
        text-align: left;
        font-size: 2.2rem;
        font-weight: 600;
        margin-top: 1.8rem;
        border-bottom: 1px solid #eee;
        color: black;
    }

    .section0-content {
        height: 3vh;
        min-height: 3rem;
    }

    .explore-arrow-chunk {
        margin-top: -1vh;
    }

    .before-after-chunk {
        margin-top: 25vh;
    }

    .chief-buttons {
        font-size: 1.8rem;
        margin-top: 3rem;
        display: block;
    }

    .navbar nav>ul {
        gap: 2.6vw;
    }

    .contact-modal-box {
        padding: 5rem;
        min-height: 20rem;
    }

    .contact-modal-headline {
        font-size: 4.8rem;
    }

    .contact-modal-subtext {
        font-size: 2rem;
    }

    .contact-modal-subtext {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .contact-modal-details p {
        margin-bottom: 2rem;
    }

    .payment-notice {
        display: block;
        padding-top: 2rem;
        font-size: 1.7rem;
    }
}





@media only screen and (max-width: 1024px) {

    .navbar-content {
        padding: 0 8.8vw;
    }


    .before-after-gallery {
        flex-direction: column;
        gap: 6rem;
    }


    .before-card,
    .after-card {
        flex: 0 0 auto;
        width: 100%;
    }

    .before-after-headline {
        font-size: 4.5rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111111;
        margin: 0 0 4rem 0;
        text-align: left;
    }

    .before-after-lower-headline {
        display: block;
        font-size: 5.2rem;
        margin-top: 1rem;
        margin-bottom: 3vh;
    }

    .media-caption {
        font-size: 1.9rem;
    }

    .after-card {
        margin-top: 0.5vh;
        margin-bottom: 3vh;
    }


    .before-after-paragraph {
        font-size: 2rem;
    }

    .before-after-text-container {
        width: 70vw;
        min-width: 65rem;
    }

    .before-after-paragraph {
        margin-top: 6rem;
        font-size: 2rem;
        line-height: 1.6;
        color: rgb(108, 108, 108);
        font-size: 2.3rem;
        width: 50rem;
        margin-left: 10vw;
    }


    .service-container {
        border: black 1px solid;
    }


    .video-loader-chunk {
        height: 50vh;
        
    }

    .square-text-media-chunk {
        gap: 4rem;
    }

    .whatsapp-headline {
        font-size: 4.5rem;
    }

    .square-intro-headline {
        font-size: 5vw;
    }

    .square-description-text {
        font-size: 2rem;
        margin-top: 3.6rem;
        color: rgb(108, 108, 108);
    }

    .whatsapp-headline {
        margin-bottom: 3rem;
        color: #000000;
        font-size: 3.6rem;
    }

    .whatsapp-lower-headline {
        font-size: 4.2rem;
        margin-bottom: 0rem;
    }

    .features-intro-headline {
        margin-bottom: 3vh;
    }


    .privacy-intro-headline {
        min-width: 45rem;
        font-size: 4.7vw;
    }

    .features-media-content {
        width: 80%;
    }

    .USB-media-content {
        width: 60%;
        margin-left: 5rem;
    }

    .privacy-pic {
        width: 70%;
    }

    .square-text-media-chunk {
        gap: 5rem;
    }



    .before-after-headline {
    }

    .normal-large-br {
        display: none;
    }



    .option-title {
        font-size: 2rem;
        margin: 0 0 1rem 0;
    }


    .closing-info-title {
        margin: 0 0 2rem 0;
    }

    .contact-modal-box {
        margin-top: -5vh;
    }

    .contact-modal-headline {
    }

    .br-mobile {
        display: inline;
    }

    .contact-modal-subtext {
        margin: 0 0 4rem 0;
    }

    .contact-modal-details p {
        margin: 0 0 1.5rem 0;
    }
}

@media (max-width: 980px) {

    .navbar {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .navbar-container {
        width: 100%;
    }

    .main-nav {
        display: none;
    }

    .hamburger-button {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .before-after-headline {
        font-size: 4.5rem;
    }

    .before-after-lower-headline {
        font-size: 5.2rem;
    }

    .media-caption {
        font-size: 1.7rem;
    }

    .before-card {
        margin-bottom: 3.6rem;
    }

    .caption-highlight {
        font-size: 2.5rem;
    }

    .before-after-text-container {
        width: 68vw;
        min-width: 56rem;
    }

    .before-after-paragraph {
        margin-top: 8rem;
        font-size: 2.2rem;
        color: rgb(108, 108, 108);
        width: 60vw;
        margin-left: 5vw;
    }

    .closing-info-title {
        margin: 0 0 2.6rem 0;
    }
}

@media only screen and (max-width: 900px) {

    .main-services-container {
        flex-direction: column;
        
        align-items: center;
        gap: 4rem;
        
        aspect-ratio: 11/9;
        max-width: 1440px;
    }

    .service-container {
        width: 100%;
        
        border-color: #000000;
        border: black 1px solid;
        
    }


    

    .service-container:hover .service-image {
        
        transform: scale(1);
        filter: brightness(1);
    }

    .square-text-media-chunk {
        flex-direction: column;
        align-items: flex-start;
        gap: 5vh;
    }

    .square-intro-headline {
        order: 1;
        font-size: 7vw;
        margin: 0;
    }


    .leftside-text-container {
        display: contents;
    }

    .rightside-square-media-container {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100rem;
    }

    .square-description-text {
        order: 3;
        color: rgb(108, 108, 108);
        font-size: 2.1rem;
    }

    .square-description-text {
        line-height: 1.6;
        margin: 0;
        margin-top: 2vh;
    }

    .features-media-container {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
    }


    .features-media-content {
        width: 30vw;
        margin: auto
    }

    .USB-media-content {
        width: 32%;
    }

    .whatsapp-headline {
        margin-bottom: 3rem;
        font-size: 5.3vw;
        color: #000000;
    }

    .whatsapp-lower-headline {
        font-size: 5.7vw;
    }

    .option-title {
        font-size: 2rem;
        margin: 0 0 1.2rem 0;
    }

    .closing-main-content {
        grid-template-columns: 1fr;
        gap: 10rem;
    }

    .closing-info-title {
        margin: 0 0 2.6rem 0;
    }

    .navbar nav a {
        text-decoration: none;
        font-weight: 350;
        font-size: 2.6rem;
    }

    .contact-trigger-btn {
        font-weight: 350;
        font-size: 2.6rem;
    }



    .mobile-nav-button-container {
        margin-top: -15rem;
    }
}



@media only screen and (max-width: 768px) {
    .tac-opening-reminder {
            width: 80vw;
        }

    .indent-text {
        width: 68vw;
    }

    .belief-statement {
        text-align: left;
        font-size: 2.45rem;
        font-weight: 600;
        margin-top: 2.3rem;
        border-bottom: 1px solid #eee;
    }

    .section0-content {
        height: 4vh;
        min-height: 4rem;
    }

    .explore-arrow-chunk {
        margin-top: -1vh;
    }

    .before-after-chunk {
        margin-top: 25vh;
    }


    .center-range {
        width: 92vw;
    }


    .all-chunks {
        width: 92vw;
    }

    .before-after-headline {
    }

    .hamburger-button {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80vw;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 10rem 3rem 0;
        gap: 2.5rem;
    }

    .main-nav .button-group-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav .language-switcher {
        margin-top: 1rem;
    }

    .main-nav a {
        font-size: 1.6rem;
    }

    .main-nav .language-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .main-nav .language-menu li a {
        padding: 0;
    }

    .navbar-content {
        padding: 0 4vw;
    }


    .before-after-headline {
        font-size: 7vw;
    }

    .before-after-lower-headline {
        font-size: 8.2vw;
    }

    .before-after-gallery {
        gap: 4rem;
    }

    .media-caption {
        margin-top: 1rem;
        font-size: 1.6rem;
    }

    .before-card {
        margin-bottom: 3.2rem;
    }

    .before-after-text-container {
        width: 100%;
        min-width: 10rem;
    }

    .before-after-paragraph {
        margin-top: 12rem;
        font-size: 2.1rem;
        color: rgb(108, 108, 108);
        width: 60vw;
        margin-left: 8vw;
    }

    .media-caption {
        font-size: 1.8rem;
    }


    .caption-highlight {
        font-size: 2.8rem;
    }


    .lower-media-caption {
        text-align: left;
    }


    .whatsapp-headline {
        margin-bottom: 3rem;
    }

    .square-intro-headline {
        font-size: 5.6vw;
    }

    .whatsapp-headline {
        font-size: 5.2vw;
    }

    .whatsapp-lower-headline {
        font-size: 6vw;
    }

    .features-intro-headline {
        margin-bottom: 3vh;
    }

    .features-intro-headline {
        font-size: 7.2vw;
    }

    .privacy-intro-headline {
        min-width: 30rem;
    }

    .features-media-content {
        width: 40%;
    }

    .USB-media-content {
        width: 33%;
    }

    .square-text-media-chunk {
        gap: 2.8vh;
    }

    .square-description-text {
        font-size: 2rem;
        color: rgb(108, 108, 108);
    }


    .main-services-container {
        aspect-ratio: 9/9;
    }

    .video-loader-chunk {
        border-radius: 8px;
        
    }

    .closing-options-grid {
        gap: 8vh;
    }

    .option-title {
        font-size: 2.2rem;
        margin: 0 0 1.2rem 0;
    }

    .closing-info-title {
        margin: 0 0 2.6rem 0;
    }

    .closing-main-content {
        gap: 10rem;
    }

    .contact-modal-box {
        padding: 5rem;
    }

    .contact-modal-headline {
        font-size: 4.8rem;
    }

    .contact-modal-subtext {
        font-size: 2rem;
    }

    .contact-modal-subtext {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .contact-modal-details p {
        margin-bottom: 2rem;
    }

    .payment-notice {
        display: block;
        padding-top: 2rem;
        font-size: 1.7rem;
    }
}

@media only screen and (max-width: 480px) {
    .belief-statement {
        text-align: left;
        font-size: 2.2rem;
        font-weight: 600;
        margin-top: 2rem;
        padding-bottom: 2.6rem;
        border-bottom: 1px solid #eee;
    }

    .section0-content {
        height: 9vh;
    }

    .explore-arrow-chunk {
        margin-top: -1vh;
    }

    .before-after-chunk {
        margin-top: 16vh;
    }

    .center-range {
        width: 92vw;
    }

    .before-after-chunk {
        width: 92vw;
    }

    .before-after-gallery {
        width: 92vw;
    }

    .before-after-headline {
        font-size: 8vw;
    }

    .before-after-lower-headline {
        font-size: 12vw;
    }

    .media-caption {
        font-size: 1.6rem;
    }


    .caption-highlight {
        font-size: 2.3rem;
    }


    .before-after-paragraph {
        font-size: 1.8rem;
        width: 70vw;
        margin-left: 5vw;
    }


    .whatsapp-headline {
        margin-bottom: 3rem;
    }

    .whatsapp-lower-headline {
        font-size: 3.8rem;
    }

    .features-intro-headline {
        margin-bottom: 3vh;
    }

    .square-intro-headline {
        font-size: 10vw;
    }

    .privacy-intro-headline {
        min-width: 30rem;
    }

    .features-media-content {
        width: 60%;
    }

    .USB-media-content {
        width: 40%;
    }

    .square-text-media-chunk {
        gap: 4vh;
    }

    .square-description-text {
        font-size: 1.8rem;
        color: rgb(108, 108, 108);
    }

    .features-intro-headline {
        min-width: 0rem;
    }

    .service-title {
        font-size: 2.8rem;
        
    }

    .main-services-container {
        aspect-ratio: 3/4;
    }

    .service-description-text {
        font-size: 1.5rem;
        
    }

    .highlight-service-detail {
        font-size: 1.7rem;
    }

    .video-loader-chunk {
        height: 45vh;
        
    }

    .stationary-text {
        font-size: 1.4rem;
        
    }



    .mobile-absent-element {
        display: none;
    }

    .closing-options-grid {
        gap: 10vh;
    }

    .option-title {
        margin: 0 0 1.2rem 0;
    }

    .closing-info-title {
        margin: 0 0 2rem 0;
    }

    .closing-main-content {
        gap: 8rem;
    }

    .navbar nav a {
        text-decoration: none;
        font-weight: 350;
        font-size: 2.1rem;
    }

    .mobile-nav-button-container {
        min-width: 36rem;
        margin-top: -6rem;
    }


    .contact-trigger-btn {
        font-weight: 350;
        font-size: 2.1rem;
    }

    .contact-modal-box {
        margin-top: -5vh;
    }

    .contact-modal-headline {
    }

    .br-mobile {
        display: inline;
    }

    .contact-modal-box {
        padding: 3rem;
    }

    .contact-modal-headline {
        font-size: 4rem;
    }

    .contact-modal-subtext {
        font-size: 1.7rem;
    }

    .contact-modal-subtext {
        margin-top: 1.6rem;
        margin-bottom: 3rem;
    }

    .contact-modal-details p {
        margin-bottom: 2rem;
    }

    .payment-notice {
        display: block;
        padding-top: .5rem;
        font-size: 1.5rem;
    }

    .br-mobile,
    .br-belief-mobile {
        display: inline;
    }
}



@media only screen and (min-width: 1441px) {

    .video-loader-chunk {
        height: 70vh;
        margin-top: 0rem;
    }

    .explore-arrow-chunk {
        margin-top: 0rem;
    }

    .before-after-paragraph {
        width: 86rem;
    }

    .main-services-container {
        width: 80vw;
        max-width: 1440px;
        margin: 15rem auto 0 auto;
    }

    .closing-option-chunk {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100vw;
    }


    .closing-options-grid {
        width: 100%;
        max-width: 1500px;
    }

    .final-closing-chunk.light-version {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100vw;
    }

    .closing-center-range {
        max-width: 1440px;
    }


    .closing-main-content {
        width: 100%;
        max-width: 1500px;
    }

    .square-text-media-chunk {
        width: 65vw;
        margin-left: auto;
        margin-right: auto;
    }

    .square-description-text {
        width: 56rem;
    }

    .whatsapp-headline {
        min-width: 62rem;
    }


    .explore-headline {
        font-size: 5rem;
    }

    .before-after-headline {
        font-size: 4.8rem
    }

    .before-after-lower-headline {
        font-size: 5.6rem;
    }
}




@media only screen and (min-width: 2450px) {
    .before-after-headline {
        font-size: 6.4rem;
    }

    .before-after-paragraph {
        font-size: 2.2rem;
    }

    .caption-highlight {
        font-size: 2.8rem;
    }

    .square-intro-headline {
        font-size: 5.6rem;
    }

    .square-description-text {
        font-size: 2.2rem;
    }

    .service-title {
        font-size: 3.2rem;
    }

    .service-description-text {
        font-size: 2rem;
    }

    .service-button {
        font-size: 2.4rem;
    }

    .main-services-container {
        width: 80vw;
        max-width: 1440px;
        margin: 15rem auto 0 auto;

    }

    .stationary-text {
        font-size: 2.2rem;
    }

    .arrow-icon {
        width: 32px;
        height: 32px;
    }
}

























.black-font-highlight {
    color: #000000;
    font-weight: 600;
}




.chunks {
    margin-bottom: 16vh;
}