body {
    margin: 0;
    background-color: #09090b;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 2rem;
}

h1,
h2 {
    color: #d63a3a;
    text-align: center;
}

.one-time-fee {
    font-size: 0.95em;
    color: #999;
    margin-top: 4px;
}

.progress {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #ffcccc;
}

.badge-most-popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #d63a3a;
    color: #fff;
    padding: 0.4em 1em;
    border-radius: 0px;
    font-size: 0.9em;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px #0004;
    letter-spacing: 0.03em;
    pointer-events: none;
}

.section {
    background-color: #353535;
    padding: 1.5rem;
    margin: 1rem auto;
    border-radius: 0px;
    max-width: 700px;
    display: none;
    box-shadow: 0 4px 24px #0003;
}

.section.active {
    display: block;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.choice-btn {
    background-color: #1c1c1e;
    color: #fff;
    border: 2px solid #444;
    padding: 1rem;
    border-radius: 0px;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}

.choice-btn.selected,
.choice-btn:hover {
    border: 2px solid #d63a3a;
    background-color: #2a2a2a;
}

.choice-btn.selected:after {
    content: "✔";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3em;
    color: #d63a3a;
}

.desc {
    font-size: 0.80em;
    color: #888888;
    margin-top: 0.15em;
}

.platform-tag {
    display: inline-block;
    background-color: #d63a3a;
    color: white;
    padding: 0.2em 0.6em;
    border-radius: 0px;
    font-size: 0.8em;
    margin-top: 0.5em;
    font-weight: bold;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.product-box {
    width: 340px;
    min-height: 200px;
    box-sizing: border-box;
    transition: 0.2s;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.product-box.selected,
.product-box:hover {
    border-color: #b22f2f;
}

.product-box.selected:after {
    content: "✔";
    position: absolute;
    right: 14px;
    top: 10px;
    font-size: 1.2em;
    color: #d63a3a;
}

.product-box h3 {
    color: #d63a3a;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.price-section {
    text-align: center;
    margin: 1em 0;
}

.price-main {
    font-size: 1.2em;
    font-weight: bold;
}

.price-strike {
    text-decoration: line-through;
    color: #888;
    margin-right: 0.5em;
}

.price-current {
    color: #d63a3a;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 1em 0;
}

.product-features li {
    padding: 0.2em 0;
    font-size: 0.9em;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5em;
    gap: 1em;
    flex-wrap: wrap;
}

.button,
.nav-btn {
    background-color: #d63a3a;
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.6rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0px;
    text-decoration: none;
    margin-top: 0.7em;
    margin-bottom: 0.7em;
    min-width: 120px;
    transition: background 0.2s;
}

.button:hover,
.nav-btn:hover {
    background-color: #b22f2f;
}

.nav-btn.outline {
    background: none;
    color: #d63a3a;
    border: 2px solid #d63a3a;
}

.nav-btn.outline:hover {
    background: #2a2a2a;
}

.summary-list {
    margin-top: 1.3em;
    margin-bottom: 2em;
    font-size: 1.06em;
    background-color: #1c1c1e;
    padding: 1.5em;
    border-radius: 0px;
    border: 1px solid #444;
}

.summary-list div {
    margin-bottom: 0.5em;
    border-bottom: 1px dashed #444;
    padding-block: 0.5em;
    display: flex;
    gap: 1rem;
}

.summary-list div strong {
    color: #6e7071;
}

.help {
    font-size: 0.93em;
    color: #ffe7b6;
    margin-top: 0.5em;
    margin-bottom: 0.3em;
    padding: 1em;
    background-color: rgba(255, 165, 0, 0.1);
    border-left: 4px solid orange;
    border-radius: 0px;
}

.help strong {
    color: #ffaa00;
}

.warning {
    background-color: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #d63a3a;
    padding: 1em;
    margin: 1em 0;
    border-radius: 0px;
    font-size: 0.9em;
}

.compatibility-info {
    background-color: #1a3d1a;
    border: 1px solid #4a7c4a;
    padding: 1em;
    border-radius: 0px;
    margin: 1em 0;
    font-size: 0.95em;
}

.pricing__item {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5019607843);
    /* border: 1px solid var(--border-color); */
    color: #fff;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1;
}

.pricing__item:hover {
    /* border-color: var(--brand-color); */
}

.pricing__item-top {
    margin-bottom: 36px;
}

.pricing__item-top .pricing__title {
    font-size: calc(1.275rem + 0.2571428571vw);
    font-weight: 400;
    margin-bottom: 0;
    text-transform: uppercase;
}

@media (min-width: 1400px) {
    .pricing__item-top .pricing__title {
        font-size: 1.5rem;
    }
}

.pricing__item-top .pricing__subtitle {
    font-size: 1rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    color: #a1a1aa;
    margin-bottom: 0;
}

.pricing__item-top .pricing__price {
    font-size: calc(1.325rem + 0.7714285714vw);
    font-weight: 700;
    margin-bottom: 15px;
    margin-block-start: 15px;
    color: #e5e7eb;
}

@media (min-width: 1400px) {
    .pricing__item-top .pricing__price {
        font-size: 2rem;
    }
}

.pricing__item-top .pricing__price span {
    font-size: 0.875rem;
}

.pricing__item-top .trk-btn {
    font-weight: 600;
}

.pricing__item-top .pricing__btn {
    padding: 10px 25px;
    background-color: #b22f2f;
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 0px;
    letter-spacing: 1px;
}

.pricing__item-top .pricing__btn:hover {
    background-color: #e33742;
}

.pricing__item-top .pricing__btn--popular {
    background-color: #d33c45;
}

.pricing__item-middle .starting-price {
    font-weight: 500;
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 4px;
    border-bottom: 1px solid #e5e7eb;
}

.pricing__item-middle .pricing__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing__item-middle .pricing__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 1rem;
    color: #888;
    border-bottom: 1px solid #e5e7eb;
}

.pricing__item-middle .pricing__list-item:last-child {
    border-bottom: none;
}

.pricing__item-middle .pricing__list-item strong {
    font-weight: 400;
    color: #888;
    display: block;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
}

.pricing__item-middle .pricing__list-item .value {
    background-color: #4ade80;
    color: #000;
    padding: 1px 6px;
    font-size: 0.75rem;
}

.text-muted {
    color: #5a5b5c !important;
}

.pricing__item-middle .pricing__list-item span {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.pricing__item-middle .pricing__list-item .pricing__list-item-value {
    font-weight: bold;
    /* Right side (value) bold font weight */
    color: #6dd400;
}

.pricing__item .badge {
    position: absolute;
    top: 30px;
    right: 20px;
    padding: 8px 10px;
    background-color: #b22f2f;
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 0px;
}

.pricing__item--pro {
    text-align: center;
}

.pricing__item--pro h3 {
    font-size: calc(1.35rem + 1.0285714286vw);
    font-weight: 700;
    margin-block-end: 1.25rem;
}

@media (min-width: 1400px) {
    .pricing__item--pro h3 {
        font-size: 2.25rem;
    }
}

.pricing__item--pro p {
    font-size: 1.125rem;
    font-weight: 500;
    margin-block-end: 1.75rem;
}

.pricing__item--pro .trk-btn {
    font-size: 1rem;
    font-weight: 600;
}

.pricing__item--pro ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing__item--popular {
    background-color: #1c1c1e;
    border: 1px solid #b22f2f;
}

.pricing__item--popular .pricing__btn {
    background-color: #b22f2f;
}

.pricing__item--popular .pricing__btn:hover {
    background-color: #d33c45;
}

.platform-logo {
    max-width: 180px;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-left: 2.2rem;
    background: #232325;
    border: 1px solid #444;
    box-shadow: 0 2px 8px #0004;
    vertical-align: middle;
}


.btn-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
}


@media (max-width: 600px) {
    .btn-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
    }

    .platform-logo {
        margin-left: 0;
        margin-top: 0.7rem;
        max-width: 120px;
        max-height: 40px;
    }
}