.offer-page {
    max-width: 1050px;
    margin: 0 auto;
    padding: 36px 18px 70px;
}

.offer-header {
    max-width: 850px;
    margin: 0 auto 34px;
    text-align: center;
}

.offer-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 16px;

    background: #f1f1f1;
    border-radius: 999px;

    font-size: 17px;
    font-weight: 700;
    color: #555;
}

.offer-header h1 {
    margin: 0;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 850;
    color: #111;
}

.offer-header h1 span {
    color: #e53935;
}

.offer-header p {
    max-width: 760px;
    margin: 20px auto 0;

    font-size: 21px;
    line-height: 1.5;
    color: #555;
}


/* CARD */

.offer-card {
    background: #fff;

    border: 1px solid #ddd;
    border-radius: 24px;

    box-shadow: 0 12px 35px rgba(0,0,0,.07);

    overflow: hidden;
}

.offer-content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
}


/* LEFT */

.offer-info {
    padding: 42px;
}

.offer-info h2 {
    margin: 0 0 28px;
    font-size: 28px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 23px;
}

.included-text {
    flex: 1;
}

.check {
    width: 30px;
    height: 30px;
    flex-shrink: 0;

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

    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;

    font-weight: 900;
    font-size: 17px;
}

.bonus-item {
    align-items: center;
}

.bonus-badge {
    width: 180px;
    flex-shrink: 0;
    height: auto;
    object-fit: contain;
}

.included-item strong {
    display: block;
    margin-bottom: 3px;

    font-size: 19px;
    color: #111;
}

.included-item span {
    display: block;

    font-size: 17px;
    line-height: 1.4;
    color: #666;
}


/* CHECKOUT */

.offer-checkout {
    padding: 35px;

    background: #f6f6f6;

    border-left: 1px solid #ddd;

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

    text-align: center;
}

.offer-mascot {
    width: 190px;
    max-height: 190px;
    object-fit: contain;

    margin-bottom: 18px;
}

.access-label {
    padding: 7px 13px;
    margin-bottom: 18px;

    background: #ffd54f;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 800;
}

.price-intro {
    font-size: 18px;
    color: #555;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;

    margin: 6px 0 4px;

    color: #111;
    font-weight: 900;
}

.offer-price .currency {
    margin-top: 11px;
    margin-right: 7px;

    font-size: 34px;
}

.offer-price .amount {
    font-size: 70px;
    line-height: 1;
}

.payment-note {
    margin-bottom: 22px;

    font-size: 16px;
    color: #666;
}


/* CTA */

.offer-cta {
    width: 100%;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 19px 20px;

    background: #ffcf3f;
    color: #111;

    border: 1px solid rgba(0,0,0,.14);
    border-bottom: 4px solid rgba(0,0,0,.22);
    border-radius: 13px;

    text-decoration: none;

    font-size: 22px;
    font-weight: 850;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.7),
        0 5px 12px rgba(0,0,0,.08);

    transition: .12s;
}

.offer-cta:hover {
    transform: translateY(1px);
}

.offer-cta img {
    width: 21px;
}

.cta-subtext {
    margin-top: 11px;

    font-size: 14px;
    color: #777;
}


/* TEST PHASE */

.offer-phase {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    margin-top: 24px;
    padding: 24px 28px;

    background: #fffbea;

    border: 1px solid #f1dfa0;
    border-radius: 18px;
}

.phase-icon {
    font-size: 25px;
}

.offer-phase strong {
    display: block;

    margin-bottom: 6px;

    font-size: 20px;
}

.offer-phase p {
    margin: 0;

    font-size: 17px;
    line-height: 1.5;
    color: #555;
}


/* CLOSING */

.offer-closing {
    max-width: 650px;

    margin: 45px auto 0;

    text-align: center;
}

.offer-closing h2 {
    margin: 0;

    font-size: 32px;
}

.offer-closing p {
    margin: 10px 0 22px;

    font-size: 18px;
    color: #666;
}

.offer-cta-bottom {
    max-width: 520px;
    margin: auto;
}


/* MOBILE */

@media (max-width: 800px) {

    .offer-content {
        grid-template-columns: 1fr;
    }

    .offer-checkout {
        border-left: 0;
        border-top: 1px solid #ddd;
    }

    .offer-info {
        padding: 30px 24px;
    }

    .offer-checkout {
        padding: 30px 24px;
    }

    .offer-price .amount {
        font-size: 62px;
    }

    .offer-header p {
        font-size: 18px;
    }

}

@media (max-width: 500px) {

    .offer-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .offer-header h1 {
        font-size: 35px;
    }

    .offer-info h2 {
        font-size: 25px;
    }

    .included-item strong {
        font-size: 18px;
    }

    .included-item span {
        font-size: 16px;
    }

}