@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Global styles for body and html elements */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body,
html {
    padding: 0;
    margin: 0;
    font-family: Inter, sans-serif;
    background-color: #000;
    color: #fff;
}

body {
    padding-top: 80px;
}

* {
    box-sizing: border-box;
}

/* Header layout and styling */
header {
    margin: 0;
    padding: 0 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    /* Frosted glass background */
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex: 1;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #e0e0e0;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #d32f2f;
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 15px;
}

button a {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}

button {
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-1,
.btn-2 {
    font-weight: 700;
    fill: #ffffff;
    color: #ffffff;
    background-color: #a3151b;
    border-radius: 28px;
    transition: all 0.3s ease;
}

.btn-1:hover,
.btn-2:hover {
    background-color: #be1820;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(163, 21, 27, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    flex: 1;
}

/* Header Right for buttons & hamburger */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

/* Desktop Defaults - Hide Mobile Elements */
.mobile-free-trial {
    display: none;
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001; /* Keep above the side menu */
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: left center;
}

/* Hamburger animations to X */
.hamburger.open .bar1 {
    transform: rotate(45deg);
    width: 34px;
}
.hamburger.open .bar2 {
    opacity: 0;
    transform: translateX(-10px);
}
.hamburger.open .bar3 {
    transform: rotate(-45deg);
    width: 34px;
}

.logo img {
    height: 125px; /* Increased dramatically to offset inner transparent padding */
    width: auto;
    margin: -25px 0; /* Compensate for the extra height so it fits within header layout */
}

.free-trial-btn {
    display: inline-block;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background-color: #a3151b;
    cursor: pointer;
    border-radius: 25px;
    padding: 15px 70px;
    transition: all 0.3s ease;
}

.free-trial-btn:hover {
    background-color: #be1820;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 5px 15px rgba(163, 21, 27, 0.4);
}

.free-trial-btn a {
    color: #ffffff;
}

.subscribe-now-btn {
    display: inline-block;
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background-color: #a3151b;
    cursor: pointer;
    border-radius: 25px;
    padding: 15px 70px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

.subscribe-now-btn:hover {
    background-color: #d32f2f;
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.6);
}

.subscribe-now-btn a {
    color: #ffffff;
}

.devices img {
    margin: 30px;
}

.free-trial {
    font-family: "Roboto", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    background-color: #a3151b;
    border-radius: 25px;
    padding: 15px 70px;
    transition: all 0.3s ease;
}

.free-trial:hover {
    background-color: #be1820;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(163, 21, 27, 0.4);
}

/* Container styling with background image */
.container {
    background-color: transparent;
    background-image: linear-gradient(180deg, #000000B8 0%, #000000 100%), url('../../images/image-10-min.jpeg');
    opacity: 1;
    width: 100%;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.color-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
}

/* Features Section */
.hero {
    text-align: center;
    padding: 50px 0;
}

.hero h1 {
    color: #E7E7E7;
    font-family: "Inter", Sans-serif;
    font-size: 60px;
    font-weight: 900;
}

.hero p {
    margin-bottom: 30px;
    text-align: center;
    color: #FFFFFF;
    font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 300;
}


.features {
    display: flex;
}

.feature {
    margin: 0 50px 50px;
    text-align: center;
    margin-bottom: 140px;
}

.feature img {
    height: 50px;
    width: 50px;
}

.feature h1, .pricing h1, .work {
    color: #E7E7E7;
    font-family: "Inter", Sans-serif;
    font-size: 48px;
    font-weight: 900;
}

.feature h1 {
    margin: 0;
    line-height: 1.1;
}


/* Subscription Pricing Section*/
.pricing {
    text-align: center;
}

.pricing-plans {
    display: flex;
    justify-content: space-evenly;
}

.plan {
    background-color: #1a1a1a;
    border-radius: 40px;
    padding: 40px 30px;
    flex: 1;
    margin: 0 10px;
}

.plan.popular {
    border: 2px solid #4CAF50;
}

.plan.reverse {
    background-color: #fff;
    color: #000;
}

.plan.reverse img {
    filter: invert(1);
}


.plan h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.plan .popular {
    margin-top: 10px;
    margin-bottom: 0px;
}

.plan-price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan li {
    margin-bottom: 10px;
}


/* How Does It Work section */
.how-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.work {
    text-align: center;
    margin-bottom: 80px;
}

.step-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px;
    width: 100%;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 320px;
}

.circle-number {
    width: 110px;
    height: 110px;
    background-color: #a3151b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 35px;
    box-shadow: 0 0 50px 10px rgba(163, 21, 27, 0.4);
}

.step-item h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.step-item p {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .step-row {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
}

p {
    font-size: 0.9em;
    line-height: 1.4;
}

/* Frequently Asked Questions (FAQ) Section */
.faq {
    padding: 30px;
    margin: 0 auto;
    border-radius: 4px;
    position: relative;
    width: 85%;
}

.faq h1 {
    text-align: center;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    font-weight: 600;
    font-size: bold;
    background-color: #111;
    padding: 15px;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '\25BC';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.faq-answer {
    background-color: #222;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px;
}

/* whatsapp support*/
.support {
    background-color: #111;
    border-radius: 5px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.support-text {
    display: flex;
    align-items: center;
}

.support-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.whatsapp-button-1 {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Payment Methods */
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px 40px;
    background-color: transparent;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.payment-logos img:hover {
    transform: scale(1.1);
}

/* Footer section */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

footer p {
    margin: 0;
}


/* Floating WhatsApp support icon */
.whatsapp-support-1 {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 9999;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.whatsapp-support-1 a {
    display: block;
    width: 60px;
    height: 60px;
}

.whatsapp-button {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg role='img' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23FFF' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3e%3c/svg%3e");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: border-animate 1.5s linear infinite;
    opacity: 0;
}

.whatsapp-button:after {
    animation-delay: .5s;
}

@keyframes border-animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


/* Scrolling logo section */
.wrapper {
    margin-top: 2rem;
    width: 90%;
    max-width: 1536px;
    margin-inline: auto;
    height: 100px;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 20%,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
}

@keyframes scrollLeft {
    to {
        left: -200px;
    }
}

@keyframes scrollRight {
    to {
        right: -200px;
    }
}

.itemLeft,
.itemRight {
    width: 200px;
    height: 100px;
    position: absolute;
    animation-timing-function: linear;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}

.itemLeft {
    left: max(calc(200px * 8), 100%);
    animation-name: scrollLeft;
}

.itemRight {
    right: max(calc(200px * 8), calc(100% + 200px));
    animation-name: scrollRight;
}

.item1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);
}

.item2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);
}

.item3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);
}

.item4 {
    animation-delay: calc(30s / 8 * (8 - 4) * -1);
}

.item5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);
}

.item6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);
}

.item7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);
}

.item8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);
}

@keyframes border-animate {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}


/* Media Queries */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .features {
        flex-direction: column;
    }

    .feature h1, .pricing h1, .work {
        font-size: 32px;
    }

    .pricing-plans {
        flex-direction: row;
    }

    .navbar {
        gap: 20px;
    }

    .navbar a {
        font-size: 13px;
    }

    .plan {
        max-width: 280px;
        margin: 10px auto;
    }

    .how-container {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .step {
        width: 100%;
        margin-bottom: 20px;
    }

    .support-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .support-icon {
        margin-bottom: 10px;
    }

    .how-container {
        display: flex;
        flex-direction: column;
    }

    .faq-question::after {
        right: 10px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }
    
    .logo img {
        height: 100px;
        margin: -15px 0;
    }

    .header-right .btn-1 {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #111;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .navbar.active {
        right: 0;
    }

    .mobile-free-trial {
        display: block;
        margin-top: 20px;
        background-color: #a3151b;
        padding: 10px 20px;
        border-radius: 20px;
    }

    .hero p br {
        display: none;
    }

    .features {
        flex-direction: column;
        gap: 20px;
    }

    .feature {
        margin: 0 20px 50px;
    }

    .feature h1, .pricing h1, .work {
        font-size: 28px;
    }

    .pricing-plans {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .plan {
        width: 100%;
        max-width: 350px;
        margin: 10px auto;
        padding: 30px;
        box-sizing: border-box;
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .feature h1, .pricing h1, .work {
        font-size: 24px;
    }

    .support-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .devices img {
        width: 300px;
        height: auto;
    }

    .support-icon {
        margin-bottom: 10px;
    }

    .faq-question::after {
        right: 10px;
    }

    .payment-logos {
        gap: 20px;
        padding: 40px 10px 20px;
    }

    .payment-logos img {
        height: 50px;
    }
}

@media screen and (max-width: 375px) {
    .hero h1 {
        font-size: 18px;
    }

    .hero p {
        font-size: 14px;
        margin: 10px 15px;
    }

    .free-trial-btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    .devices img {
        width: 250px;
        height: auto;
    }

    .color-overlay {
        display: none;
    }

    .pricing {
        padding: 10px;
    }

    .pricing-plans {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        max-width: 320px;
        margin: 0 auto;
    }

    .plan {
        width: 100%;
        /* Volledige breedte binnen de container */
        padding: 15px;
        text-align: center;
        border-radius: 40px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .plan img {
        width: 100px;
        height: auto;
        margin-top: 10px;
    }

    .work {
        text-align: center;
        margin: 20px 0;
    }

    .how-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        gap: 15px;
        max-width: 290px;
        margin: 0 auto;
    }

    .step {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .step .icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .step h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .free-trial {
        font-size: 14px;
        padding: 8px 15px;
    }

    .payment-logos {
        gap: 15px;
    }

    .payment-logos img {
        height: 40px;
    }
}


@media (max-width: 320px) {
    body {
        margin: 0;
        padding: 0;
    }

    .All-In-One {
        font-size: 2px;
    }

    .devices {
        width: 100px;
        height: 100px;
    }

    .how-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5px;
        gap: 10px;
        max-width: 250px;
        /* Beperk de breedte verder */
        margin: 0 auto;
        /* Centreer de container */
    }

    .step {
        width: 100%;
        text-align: center;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .step .icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .step h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .step p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .free-trial {
        font-size: 12px;
        padding: 8px 10px;
    }

    .work {
        text-align: center;
        margin: 10px 0;
    }

    .pricing {
        padding: 5px;
    }

    .pricing-plans {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        max-width: 280px;
        /* Beperk de breedte verder */
        margin: 0 auto;
        /* Centreer de plannen */
    }

    .plan {
        width: 100%;
        padding: 10px;
        text-align: center;
        border-radius: 40px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .plan img {
        width: 80px;
        height: auto;
        margin-top: 10px;
    }
}

/* Payment Scheme Section */
.payment-scheme {
    background-color: #222; /* Sleek dark background matching screenshot */
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 2px solid #111;
    border-bottom: 4px solid #a3151b; /* Red accent below the logos */
}



