* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    background-image: url('bg-desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
    padding-bottom: 32px;
    width: 100%;
}

.container {
    text-align: center;
    padding: 0px;
    max-width: 900px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 20px;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 211px;
    width: 100%;
    height: auto;
}

.headline {
    margin-bottom: 40px;
    color: #ffffff;
}

.headline h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 38px;
}

.usps {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.button {
    display: block;
    width: 100%;
    max-width: 350px;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

.button-grab {
    background-color: #00B14F;
    color: #ffffff;
}

.button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

.button-grab:hover {
    background-color: #009440;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 177, 79, 0.3);
}

.button:active {
    transform: translateY(0);
}

.testimonials {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    width: auto;
}

.stars {
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial p {
    color: #ffffff;
    font-size: 16px;
    font-style: normal;
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
}

.testimonial p .emoji {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* Responsive design for tablet and mobile */
@media (max-width: 768px) {
    body {
        padding: 0;
        align-items: flex-start;
        background-image: url('bg-mobile.png');
    }

    .container {
        border-radius: 0;
        max-width: 100%;
        min-height: auto;
        padding: 0;
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .logo-container,
    .content-wrapper,
    .testimonials-wrapper {
        background-color: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 40px;
        margin-left: 40px;
        margin-right: 40px;
        border-radius: 16px;
    }

    .logo-container {
        margin-top: 40px;
        margin-bottom: 40px !important;
    }

    .content-wrapper {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .testimonials-wrapper {
        margin-top: 0 !important;
        margin-bottom: 40px;
    }

    /* Remove individual section backgrounds */
    .headline,
    .buttons-container,
    .testimonials,
    .copyright {
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        margin: 0 !important;
        border: none;
    }

    .headline {
        margin-bottom: 40px !important;
    }

    .testimonials {
        margin-bottom: 30px !important;
    }

    .copyright {
        border-top: none;
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .logo-container,
    .content-wrapper,
    .testimonials-wrapper {
        padding: 24px;
        margin-left: 24px;
        margin-right: 24px;
    }

    .logo-container {
        padding-bottom: 16px;
        margin-top: 24px;
        margin-bottom: 24px !important;
    }

    .content-wrapper {
        margin-bottom: 24px;
    }

    .testimonials-wrapper {
        margin-bottom: 24px;
    }

    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .logo {
        max-width: 160px;
    }

    .logo-container {
        margin-bottom: 30px;
    }

    .headline h1 {
        font-size: 20px;
    }

    .usps {
        font-size: 16px;
    }

    .button {
        font-size: 16px;
        padding: 15px 30px;
    }

    .testimonials {
        flex-direction: column;
    }

    .testimonial p {
        font-size: 14px;
    }
}
