@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;500;600&display=swap');
* {
    box-sizing: border-box;
}

body{
    background-image: url("background.png");
    margin: 0;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Karla', sans-serif;
    color: #14362f;
}

.page-shell {
    width: min(1120px, calc(100% - 3rem));
    margin: 0 auto;
    padding-bottom: 2rem;
}

.logo-box {
    padding: 1.25rem 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo{
    width: 74px;
}

.parent {
    padding: 1.5rem;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 22px;
    border: 1px solid rgba(0, 176, 134, 0.2);
    box-shadow: 0 14px 32px rgba(10, 56, 46, 0.12);
}

.first-child {
    width: min(560px, 100%);
}

.eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00785d;
    font-weight: 600;
}

h1 {
    margin: 0;
    font-size: clamp(1.9rem, 2.6vw, 2.5rem);
    line-height: 1.15;
    font-weight: 600;
}

.subtext {
    margin: 0.9rem 0 0;
    max-width: 48ch;
    font-size: 1.06rem;
    line-height: 1.5;
    color: #335c54;
}

.actions {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.pdf-button {
    border: 2px solid #00B086;
    border-radius: 10px;
    padding: 0.78rem 1.15rem;
    min-width: 180px;
    text-decoration: none;
    color: #00B086;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.iconpdf {
    margin-right: 10px;
}

.button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.15rem;
    min-width: 180px;
    background-color: #00B086;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    border-radius: 10px;
}

.android{
    width: 1.15rem;
    margin-right: 0.45rem;
}

.qr-scan {
    margin-top: 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.qr-scan__label {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: #0d4a3c;
    line-height: 1.2;
}

.qr-scan__card {
    background: #fff;
    border-radius: 12px;
    padding: 0.9rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 176, 134, 0.15);
}

.qr-scan__image {
    display: block;
    width: min(200px, 64vw);
    height: auto;
    max-width: 100%;
}

.second-child {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lottie-player{
    width: min(540px, 100%);
}

@media screen and (max-width: 1101px){
    .page-shell {
        width: min(960px, calc(100% - 1.8rem));
    }

    .logo-box {
        justify-content: center;
        padding-top: 1rem;
    }

    .parent{
        padding: 1.2rem;
        flex-direction: column-reverse;
        min-height: auto;
        gap: 1rem;
    }

    .first-child {
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .subtext {
        margin-inline: auto;
        font-size: 1rem;
    }

    .actions {
        justify-content: center;
        margin-top: 1rem;
    }

    .button,
    .pdf-button{
        width: 100%;
        max-width: 280px;
    }

    .qr-scan {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .qr-scan__label {
        text-align: center;
    }

    .lottie-player{
        width: min(340px, 90vw);
    }

    .logo{
        width: 45px;
    }
}
.platform-link {
    margin: 1.15rem 0 0;
    font-size: 0.98rem;
    color: #335c54;
}

.platform-link a {
    color: #00B086;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 176, 134, 0.35);
    padding-bottom: 1px;
}

.platform-link a:hover {
    border-bottom-color: #00B086;
}
