/* v2 design tokens — matches home2.css */
:root {
    --v2-primary: #2d5a3d;
    --v2-bg: #f8f6f2;
    --v2-muted: #6b7280;
    --v2-font: Plus Jakarta Sans, system-ui, sans-serif;
    --v2-block-border: #e9e6df;
}

/* ── Main content layout ── */
.pricing-page .contents {
    gap: 100px;
    display: flex;
    flex-direction: column;
}

.pricing-page .why-choose-us {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.pricing-page .why-choose-us .section-title {
    font-family: var(--v2-font);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 0;
}

.pricing-page .why-choose-us .section-subtitle {
    font-family: var(--v2-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 0;
}

.pricing-page .why-choose-us .features-list {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.pricing-page .why-choose-us .features-list .feature-item {
    width: auto;
    height: auto;
    display: flex;
    gap: 20px;
    border-radius: 5px;
    padding: 27px 26px;
    align-items: center;
    background-color: var(--pricing-items);
}

.pricing-page .why-choose-us .features-list .feature-item .feature-icon svg {
    width: 25px;
    height: 25px;
}

.pricing-page .why-choose-us .features-list .feature-item .feature-text {
    font-family: var(--v2-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: var(--text-green);
    white-space: nowrap;
}

/* ── Boost section ── */
.pricing-page .boost-wrapper {
    background-image: url(../img/final-thoughts1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.pricing-page .boost-wrapper-2 {
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 939px;
    gap: 64px;
    border-radius: 10px;
    padding: 100px;
}

.boost-wrapper-2 .boost-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.boost-wrapper-2 .boost-intro .section-title {
    font-family: var(--v2-font);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-white);
    margin-bottom: 0;
}

.boost-wrapper-2 .boost-intro .section-subtitle {
    font-family: var(--v2-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    color: var(--text-white);
    margin-bottom: 0;
}

.boost-wrapper-2 .boost-intro .section-subtitle strong {
    font-weight: 900;
}

.boost-wrapper-2 .boost-packages {
    display: flex;
    flex-direction: row;
    max-width: 1184px;
    gap: 28px;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.boost-wrapper-2 .boost-packages .boost-card {
    display: flex;
    flex-direction: column;
    width: 376px;
    height: 422px;
    gap: 34px;
    border-radius: 10px;
    padding: 50px;
    align-items: start;
    background-color: var(--white);
    position: relative;
}

.boost-wrapper-2 .boost-packages .boost-card .boost-card-header {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

.boost-wrapper-2 .boost-packages .boost-card .boost-card-header .boost-title {
    display: flex;
    font-family: var(--v2-font);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--text-green);
    margin-bottom: 0;
}

.boost-wrapper-2 .boost-packages .boost-card .boost-card-header .boost-price {
    font-family: var(--v2-font);
    font-weight: 600;
    font-size: 48.28px;
    letter-spacing: 0;
    color: var(--text-green);
}

.boost-wrapper-2 .boost-packages .boost-card .line {
    display: flex;
    width: 276px;
    border-top: 1px solid var(--border-color-grey);
    margin: 0;
}

.boost-wrapper-2 .boost-packages .boost-card .duration {
    display: flex;
    flex-direction: row;
    height: 19px;
    justify-content: space-between;
    color: var(--text-green);
    width: -webkit-fill-available;
}

.boost-wrapper-2 .boost-packages .boost-card .duration .duration-label {
    font-family: var(--v2-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.boost-wrapper-2 .boost-packages .boost-card .duration .duration-value {
    font-family: var(--v2-font);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
}

.boost-wrapper-2 .boost-packages .boost-card .boost-btn {
    width: -webkit-fill-available;
    height: 61px;
    max-height: 61px;
    gap: 34px;
    border-radius: 1000px;
    padding: 18px 40px;
    display: flex;
    flex-direction: row;
    background-color: var(--btn-color-yellow);
    border-color: var(--btn-color-yellow);
    justify-content: space-evenly;
    align-items: center;
    color: var(--text-white);
    transition: all 0.3s ease-in-out;
}

.boost-wrapper-2 .boost-packages .boost-card .boost-btn:hover {
    background-color: var(--btn-color-yellow-hover);
    animation: bounce 0.6s ease-in-out infinite alternate;
}

@keyframes bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-2px); }
    100% { transform: translateY(0); }
}

.boost-wrapper-2 .boost-packages .boost-card .boost-btn span {
    font-family: var(--v2-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.boost-wrapper-2 .boost-packages .boost-card .boost-btn:hover span {
    margin-right: 5px;
}

.boost-wrapper-2 .boost-packages .boost-card .boost-btn svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease-in-out;
}

.boost-wrapper-2 .boost-packages .boost-card .boost-btn:hover svg {
    transform: rotate(-45deg);
}

.boost-wrapper-2 .boost-packages .boost-card .popular {
    display: none;
}

.boost-wrapper-2 .boost-packages .col-12:nth-child(2) .boost-card .popular {
    display: flex !important;
    align-items: center;
    align-self: center;
    justify-content: center;
    width: 108px;
    height: 31px;
    gap: 34px;
    border-radius: 4px;
    padding: 3px 10px;
    background-color: var(--green);
    position: absolute;
    top: -16px;
}

.boost-wrapper-2 .boost-packages .row div:nth-of-type(2) .boost-card .popular span {
    color: var(--text-white);
    font-family: var(--v2-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0;
    text-align: center;
}

.boost-wrapper-2 .boost-benefits p {
    font-family: var(--v2-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-white);
    display: flex;
    align-self: center;
    max-width: 605px;
    margin: 0 auto;
}

/* ── Responsive ── */
@media screen and (max-width: 1200px) {
    .boost-wrapper-2 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .boost-wrapper-2 .boost-packages .boost-card {
        padding: 30px 20px;
        width: 300px;
        height: 400px;
    }

    .boost-wrapper-2 .boost-packages .boost-card .line {
        width: 260px;
    }
}

@media screen and (max-width: 1024px) {
    .pricing-page .why-choose-us .features-list {
        justify-content: space-evenly;
    }

    .pricing-page .why-choose-us .features-list .feature-item {
        width: 350px;
    }

    .pricing-page .why-choose-us .features-list .feature-item .feature-text {
        white-space: normal;
    }

    .boost-wrapper-2 .boost-packages .boost-card {
        padding: 30px 20px;
        width: 250px;
        height: 400px;
    }

    .boost-wrapper-2 .boost-packages .boost-card .line {
        width: 210px;
    }
}

@media screen and (max-width: 850px) {
    .boost-wrapper-2 .boost-packages .boost-card {
        width: 220px;
    }
}

@media screen and (max-width: 768px) {
    .pricing-hero-v2 {
        padding: 48px 0 40px;
    }

    .pricing-hero-v2 .pricing-hero-title {
        font-size: 26px;
    }

    .pricing-page .why-choose-us .features-list .feature-item {
        width: 400px;
    }

    .pricing-page .why-choose-us {
        gap: 20px;
    }

    .boost-wrapper-2 .boost-packages {
        flex-direction: column;
    }

    .boost-wrapper-2 .boost-packages .row {
        row-gap: 50px;
    }

    .boost-wrapper-2 .boost-packages .boost-card {
        width: 100%;
    }

    .boost-wrapper-2 .boost-packages .boost-card .line {
        width: 66.6vw;
    }

    .boost-wrapper-2 {
        padding: 50px;
        gap: 40px;
    }

    .boost-wrapper-2 .boost-intro .section-title {
        font-size: 20px;
    }

    .boost-wrapper-2 .boost-intro .section-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .boost-wrapper-2 .boost-benefits p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 600px) {
    .pricing-page .why-choose-us .features-list {
        gap: 10.79px;
    }

    .pricing-page .contents {
        gap: 50px;
        padding-left: 0;
        padding-right: 0;
    }

    .pricing-page .contents .why-choose-us {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media screen and (max-width: 550px) {
    .pricing-page .why-choose-us .section-title {
        line-height: 1.3;
        font-size: 18px;
    }

    .pricing-page .why-choose-us .features-list .feature-item .feature-icon svg {
        width: 15px;
        height: 15px;
    }

    .pricing-page .why-choose-us .features-list .feature-item .feature-text {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 425px) {
    .pricing-page .why-choose-us .features-list .feature-item {
        width: 95%;
    }

    .pricing-page .why-choose-us .section-subtitle {
        line-height: 22px;
        font-size: 14px;
    }
}

/* Boost cards stack vertically at tablet+ (<=1024px). Three cards in a row
   (250-376px each + gaps + 100px wrapper padding) exceed tablet viewports
   even after the existing 1024 shrink. A single column with a readable
   max-width is the clearer layout. Overrides earlier rules by coming last. */
@media screen and (max-width: 1024px) {
    .boost-wrapper-2 .boost-packages .row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        flex-wrap: nowrap;
    }

    .boost-wrapper-2 .boost-packages .col-md-4,
    .boost-wrapper-2 .boost-packages [class*='col-md-'] {
        flex: 0 0 auto;
        max-width: 480px;
        width: 100%;
    }

    .boost-wrapper-2 .boost-packages .boost-card {
        width: 100%;
        max-width: none;
        height: auto;
    }

    .boost-wrapper-2 .boost-packages .boost-card .line {
        width: auto;
        align-self: stretch;
    }

    .boost-wrapper-2 {
        padding: 48px 24px;
        min-height: auto;
    }
}

@media screen and (max-width: 768px) {
    .boost-wrapper-2 {
        padding: 32px 16px;
    }
}

/* ===== More ways to sell: loyalty / equipment / cross-post ===== */
.pricing-page .more-ways {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.pricing-page .more-ways .section-title {
    font-family: var(--v2-font);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 0;
}

.pricing-page .more-ways .section-subtitle {
    font-family: var(--v2-font);
    font-weight: 300;
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0;
    text-align: center;
    color: var(--v2-muted);
    margin-bottom: 0;
}

.pricing-page .more-ways-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    align-items: stretch;
    max-width: 1184px;
    width: 100%;
    align-self: center;
}

/* Card anatomy mirrors the boost cards: eyebrow, big figure, line, copy, CTA */
.pricing-page .offer-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 1 1 300px;
    max-width: 376px;
    border-radius: 10px;
    padding: 40px;
    background-color: var(--white);
    border: 1px solid var(--v2-block-border);
    box-shadow: 0 10px 30px rgba(45, 90, 61, 0.06);
}

.pricing-page .offer-card .offer-label {
    font-family: var(--v2-font);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--text-green);
}

.pricing-page .offer-card .offer-figure-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pricing-page .offer-card .offer-figure {
    font-family: var(--v2-font);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--text-green);
}

.pricing-page .offer-card .offer-caption {
    font-family: var(--v2-font);
    font-weight: 400;
    font-size: 15px;
    color: var(--v2-muted);
}

.pricing-page .offer-card .offer-line {
    border: 0;
    border-top: 1px solid var(--border-color-grey);
    width: 100%;
    margin: 0;
}

.pricing-page .offer-card .offer-copy {
    font-family: var(--v2-font);
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0;
    color: var(--v2-muted);
    margin-bottom: 0;
}

.pricing-page .offer-card .offer-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: auto;
}

.pricing-page .pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 12px 28px;
    border-radius: 1000px;
    background-color: var(--btn-color-yellow);
    color: var(--text-white);
    font-family: var(--v2-font);
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.pricing-page .pricing-cta:hover {
    background-color: var(--btn-color-yellow-hover);
    color: var(--text-white);
}

.pricing-page .pricing-cta-quiet {
    background-color: transparent;
    border: 1px solid var(--v2-primary);
    color: var(--v2-primary);
}

.pricing-page .pricing-cta-quiet:hover {
    background-color: var(--v2-primary);
    color: var(--text-white);
}

.pricing-page .pricing-cta-inverse {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--text-white);
}

.pricing-page .pricing-cta-inverse:hover {
    background-color: var(--text-white);
    color: var(--v2-primary);
}

/* Reward card: the one accent in the row. Deep brand green, figure in CTA yellow. */
.pricing-page .offer-card-reward {
    background-color: var(--v2-primary);
    border-color: var(--v2-primary);
}

.pricing-page .offer-card-reward .offer-label {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-page .offer-card-reward .offer-figure {
    color: var(--btn-color-yellow);
}

.pricing-page .offer-card-reward .offer-caption {
    color: var(--text-white);
}

.pricing-page .offer-card-reward .offer-line {
    border-top-color: rgba(255, 255, 255, 0.9);
}

.pricing-page .offer-card-reward .offer-copy {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .pricing-page .offer-card {
        padding: 28px;
        max-width: none;
    }
}

@media (max-width: 575px) {
    .pricing-page .offer-actions .pricing-cta {
        width: 100%;
    }
}
