.pf-pricing-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 16px;
    padding: 16px 18px;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.035), transparent 62%),
        #101114;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 4px solid var(--beam-color, #d4af37);
    border-radius: 16px;
}

.pf-pricing-intro span,
.pf-pricing-intro strong {
    display: block;
}

.pf-pricing-intro span {
    color: var(--beam-color, #d4af37);
    font-size: 10px;
    font-weight: 900;
}

.pf-pricing-intro strong {
    margin-top: 2px;
    color: #f8f8f9;
    font-size: 15px;
}

.pf-pricing-intro p {
    max-width: 430px;
    margin: 0;
    color: #8f9099;
    font-size: 10px;
    line-height: 1.8;
}

.pf-price-group + .pf-price-group {
    margin-top: 17px;
}

.pf-account-discount {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
}

.pf-account-discount span {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    color: #090a0b;
    font-size: 9px;
    font-weight: 900;
    background: var(--beam-color, #d4af37);
    border-radius: 6px;
}

.pf-account-discount code {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    color: #f4f4f5;
    font-family: "Cairo", sans-serif;
    font-size: 9px;
    font-weight: 900;
    direction: ltr;
    background: #17181c;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

.pf-account-discount--none span {
    color: #a6a8b0;
    background: #191a1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-price-action {
    min-width: 250px;
    display: flex;
    align-items: stretch;
    gap: 8px;
    direction: rtl;
}

.pf-price-amount {
    min-width: 142px;
    min-height: 76px;
    display: grid;
    place-content: center;
    justify-items: center;
    padding: 8px 14px;
    direction: ltr;
    background:
        radial-gradient(
            circle at 50% 0%,
            color-mix(in srgb, var(--beam-color, #d4af37) 16%, transparent),
            transparent 68%
        ),
        #0c1010;
    border: 1px solid
        color-mix(in srgb, var(--beam-color, #d4af37) 38%, transparent);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.pf-price-amount small {
    color: #8e939a;
    font-size: 8px;
    font-weight: 800;
}

.pf-price-amount strong {
    display: block;
    color: #f4f7f5;
    font-size: 22px;
    font-weight: 950;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.pf-price-amount.is-discounted strong {
    color: var(--beam-color, #22c55e);
    text-shadow:
        0 0 16px
        color-mix(in srgb, var(--beam-color, #22c55e) 28%, transparent);
}

.pf-price-amount del {
    color: #777c83;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration-color: #b95b5b;
    text-decoration-thickness: 1.5px;
}

.pf-price-currency {
    margin-inline-end: 2px;
    font-size: 0.72em;
}

.pf-price-cta {
    min-width: 98px;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 9px 15px;
    color: #04150d;
    text-decoration: none;
    background:
        linear-gradient(180deg, #35d887 0%, #0fa66a 100%);
    border: 1px solid rgba(91, 255, 183, 0.35);
    border-radius: 999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 8px 22px rgba(12, 166, 103, 0.2);
    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}

.pf-price-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 12px 28px rgba(12, 166, 103, 0.28);
}

.pf-price-cta > span {
    font-size: 16px;
    font-weight: 950;
}

.pf-price-cta > small {
    margin-top: 1px;
    color: rgba(4, 21, 13, 0.72);
    font-size: 8px;
    font-weight: 800;
}

.pf-price-cta--disabled {
    color: #a6a8ad;
    cursor: default;
    background: #1b1c20;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.pf-price-cta--disabled > small {
    color: #70737a;
}

.pf-price-cta--disabled:hover {
    transform: none;
    filter: none;
    box-shadow: none;
}

@media (max-width: 1024px) {
    .pf-pricing-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .pf-price-head > div:last-child {
        min-width: 0;
    }

    .pf-account-discount {
        margin-inline: auto;
    }

    .pf-price-action {
        margin-inline: auto;
    }
}

@media (max-width: 560px) {
    .pf-pricing-intro {
        padding: 14px;
        text-align: right;
    }

    .pf-pricing-intro strong {
        font-size: 13px;
    }

    .pf-pricing-intro p {
        font-size: 9px;
    }

    .pf-account-discount {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pf-price-action {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .pf-price-amount {
        min-width: 0;
        flex: 1 1 150px;
    }

    .pf-price-cta {
        min-width: 92px;
        flex: 0 0 92px;
        padding-inline: 10px;
    }

    .pf-price-amount strong {
        font-size: 20px;
    }
}

.pf-price-cta:focus-visible {
    outline: 2px solid var(--beam-color, #d4af37);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .pf-price-cta {
        transition: none;
    }

    .pf-price-cta:hover {
        transform: none;
    }
}