/* =========================================================
   1. VARIABLES, RESET AND GLOBAL SETTINGS
   ========================================================= */
:root {
    --bg-dark: #000000;
    --bg-card: #ffffff;
    --bg-card-hover: #fbfde9;
    --bg-input: #ffffff;
    --accent-gold: #cfff04;
    --accent-gold-soft: #f4fbd9;
    --accent-green: #267a00;
    --text-main: #16140f;
    --text-muted: #5f5a52;
    --text-light: #f6f1e7;
    --border-color: #ddd6c8;
    --border-dark: #16140f;
    --lime-tint: #f1fac4;
    --shadow-soft: 0 8px 24px rgba(22, 20, 15, 0.08);
    --shadow-card: 0 4px 16px rgba(22, 20, 15, 0.07);
    --font-sans: Arial, Helvetica, sans-serif;
    --font-display: "NachoDisplay", "Arial Black", Arial, sans-serif;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    background: #ffffff;
    scroll-behavior: smooth;
}
body {
    min-width: 320px;
    background: #ffffff;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
}
body button,
body input,
body select,
body textarea {
    font-family: inherit;
}

/* =========================================================
   2. SHARED CALCULATOR CONTAINERS
   ========================================================= */

.calc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body .calc-hero .calc-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   3. BLACK HERO AND PACKAGE BUTTONS
   ========================================================= */

body .calc-hero {
    position: relative;
    z-index: 1;
    min-height: 520px;
    padding: 64px 24px 70px;
    overflow: visible;
    background: #000000 !important;
    color: var(--text-light);
    text-align: center;
}

body .calc-hero .badge-pill {
    display: inline-block;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body .calc-hero h1 {
    margin: 25px 0 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

body .nt-hero-swoosh {
    display: block;
    width: min(180px, 42%);
    height: auto;
    margin: 14px auto 18px;
}

body .calc-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #e3dfd5;
    font-size: 1rem;
    line-height: 1.6;
}

body .tier-switcher {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 42px auto 0;
}

body .tier-btn {
    position: relative;
    display: flex;
    min-width: 150px;
    padding: 16px 20px;
    flex-direction: column;
    gap: 2px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-main);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

body .tier-btn:hover,
body .tier-btn:focus-visible {
    border-color: var(--accent-gold);
    outline: none;
    background: var(--accent-gold-soft);
    color: var(--text-main);
    box-shadow: 0 5px 14px rgba(207, 255, 4, 0.18);
    transform: translateY(-2px);
}

body .tier-btn.active,
body .tier-btn.active:hover,
body .tier-btn.active:focus-visible {
    border-color: var(--accent-gold);
    outline: none;
    background: var(--accent-gold);
    color: var(--text-main);
    box-shadow: none;
}

body .tier-btn .tier-name {
    color: inherit;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

body .tier-btn .tier-sub {
    color: #706b61;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

body .tier-btn.active .tier-sub {
    color: #2c3100;
}

body .tier-btn .tier-price {
    margin-top: 5px;
    color: inherit;
    font-size: 1.28rem;
    font-weight: 800;
}

body .tier-btn .tier-badge {
    position: absolute;
    top: -11px;
    right: 12px;
    padding: 4px 9px;
    border: 1px solid var(--accent-gold);
    border-radius: 999px;
    background: var(--bg-dark);
    color: var(--accent-gold);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =========================================================
   3A. CURRENCY SWITCHER
   ========================================================= */
body .summary-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

body .summary-header__top .summary-pill {
    flex: 0 1 auto;
    margin-bottom: 0;
}

body .currency-switcher {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

body .currency-btn {
    min-width: 0;
    padding: 6px 8px;
    border: 1px solid var(--border-dark);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-main);
    cursor: pointer;
    font: inherit;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

body .currency-btn:hover,
body .currency-btn:focus-visible {
    border-color: var(--accent-gold);
    outline: none;
    background: var(--accent-gold-soft);
    color: var(--text-main);
    transform: translateY(-1px);
}

body .currency-btn.active,
body .currency-btn.active:hover,
body .currency-btn.active:focus-visible {
    border-color: var(--accent-gold);
    outline: none;
    background: var(--accent-gold);
    color: var(--text-main);
}

@media (max-width: 700px) {
    body .summary-header__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    body .currency-switcher {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    body .currency-btn {
        padding: 7px 9px;
        font-size: 0.68rem;
    }
}

/* =========================================================
   4. CALCULATOR MAIN AREA
   ========================================================= */

body .calc-main {
    min-height: 600px;
    padding: 64px 24px 80px;
    background: #ffffff !important;
}

body .calc-main > .calc-container {
    max-width: 1160px;
    margin: 0 auto;
}

/* =========================================================
   5. PACKAGE SUMMARY LAYOUT
   ========================================================= */

body .package-summary-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
    margin: 0 auto 64px;
}

body .pricing-content-column {
    display: block;
    min-width: 0;
}

body .package-top-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

/* =========================================================
   6. PACKAGE INFORMATION CARD
   ========================================================= */

body .package-information-card {
    position: relative;
    display: block;
    width: 100%;
    min-width: 0;
    height: 620px;
    min-height: 620px;
    padding: 36px 38px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #ffffff !important;
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
}

body .package-information-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-gold);
    content: "";
}

body .package-information-card__content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

body .package-panel {
    width: 100%;
    min-width: 0;
}

body .package-panel[hidden] {
    display: none !important;
}

body .package-panel__eyebrow {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

body .package-panel h2 {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 26px 0 34px;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 0.98;
    overflow-wrap: break-word;
    text-transform: uppercase;
}

body .package-panel__offer,
body .package-panel__duration,
body .package-panel__price {
    display: block;
    max-width: 100%;
    color: var(--text-main);
}

body .package-panel__price {
    margin-top: 5px;
}

body .package-panel__group {
    margin-top: 26px;
}

body .package-panel__group h3 {
    margin: 0 0 9px;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-transform: uppercase;
}

body .package-panel__group p {
    max-width: 390px;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

body .package-panel__group p + p {
    margin-top: 12px;
}

body .package-panel__disclaimer {
    font-size: 0.75rem !important;
    line-height: 1.45 !important;
}

body .package-panel__soft-checks {
    padding: 15px;
    border-left: 4px solid var(--accent-gold);
    background: var(--accent-gold-soft);
}

/* =========================================================
   7. MOTIVATIONAL PACKAGE CARD
   ========================================================= */

body .package-explainer-card {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    height: 620px;
    min-height: 620px;
    padding: 36px;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: #000000 !important;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

body .package-explainer-card::after {
    position: absolute;
    right: -88px;
    bottom: -116px;
    width: 230px;
    height: 230px;
    border: 28px solid var(--accent-gold);
    border-radius: 50%;
    content: "";
    opacity: 0.9;
    pointer-events: none;
}

body .package-explainer-card__top {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
}

body .package-explainer-card__eyebrow {
    margin: 0;
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

body .package-explainer-card h2 {
    width: 100%;
    max-width: 100%;
    margin: 30px 0 22px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.9rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 0.98;
    overflow-wrap: break-word;
    text-transform: uppercase;
}

body .package-explainer-card__top > p:not(.package-explainer-card__eyebrow) {
    position: relative;
    z-index: 1;
    max-width: 390px;
    margin: 0;
    color: #e9e5dc;
    font-size: 0.92rem;
    line-height: 1.5;
}

body .package-explainer-card__statement {
    position: relative;
    z-index: 2;
    max-width: 300px;
    margin: auto 0 0;
    padding-top: 36px;
    color: var(--accent-gold) !important;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.85rem) !important;
    font-weight: 900;
    letter-spacing: -0.015em;
    line-height: 0.98 !important;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    body .package-panel h2 {
        font-size: clamp(1.8rem, 3.2vw, 2.45rem);
    }

    body .package-explainer-card h2 {
        font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    }
}

@media (max-width: 700px) {
    body .package-information-card,
    body .package-explainer-card {
        height: auto;
        min-height: 0;
    }

    body .package-information-card {
        overflow: visible;
    }

    body .package-explainer-card {
        min-height: 520px;
    }

    body .package-panel h2 {
        font-size: clamp(1.9rem, 8vw, 2.7rem);
    }

    body .package-explainer-card h2 {
        font-size: clamp(2rem, 9vw, 2.9rem);
    }

    body .package-explainer-card__statement {
        margin-top: 80px;
        padding-top: 0;
    }
}

/* =========================================================
   8. PACKAGE CARD RESPONSIVE TYPE
   ========================================================= */

@media (max-width: 1100px) {
    body .package-panel h2 {
        font-size: clamp(1.75rem, 3vw, 2.35rem);
    }

    body .package-explainer-card h2 {
        font-size: clamp(1.8rem, 3.2vw, 2.45rem);
    }
}

@media (max-width: 700px) {
    body .package-panel h2 {
        font-size: clamp(1.9rem, 8vw, 2.7rem);
    }

    body .package-explainer-card h2 {
        font-size: clamp(2rem, 9vw, 2.9rem);
    }
}

/* =========================================================
   8. STICKY CALCULATOR SUMMARY
   ========================================================= */

body .package-summary-layout .calc-sidebar {
    position: sticky !important;
    top: 200px !important;
    z-index: 50 !important;
    display: block !important;
    align-self: start !important;
    width: 100%;
    height: max-content !important;
    min-height: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body .summary-card {
    position: relative;
    display: block !important;
    width: 100%;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #ffffff !important;
    color: var(--text-main) !important;
    box-shadow: var(--shadow-soft);
}

body .summary-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

body .summary-pill {
    display: inline-block;
    margin-bottom: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--bg-dark);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body .summary-header h3 {
    margin: 12px 0 0;
    color: var(--text-main) !important;
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

body .summary-pricing {
    margin-bottom: 20px;
}

body .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
    color: var(--text-main) !important;
    font-size: 0.95rem;
}

body .crossed-out-row {
    color: var(--text-muted) !important;
}

body .price-strikethrough {
    color: var(--text-muted) !important;
    text-decoration: line-through;
}

body .total-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    color: var(--text-main) !important;
    font-size: 1.05rem;
    font-weight: 700;
}

body .price-final {
    color: var(--text-main) !important;
    font-family: var(--font-display);
    font-size: 1.9rem;
}

body .savings-banner {
    margin-top: 12px;
    padding: 10px;
    border-radius: 10px;
    background: var(--accent-gold) !important;
    color: var(--text-main) !important;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
}

body .selected-items-box {
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

body .selected-items-box h4 {
    margin-bottom: 10px;
    color: var(--text-main) !important;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body .selected-list {
    max-height: 260px;
    padding-right: 6px;
    overflow-y: auto;
    list-style: none;
}

body .selected-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main) !important;
    font-size: 0.85rem;
    line-height: 1.35;
}

body .selected-list li span:first-child {
    min-width: 0;
}

body .selected-list li span:last-child {
    color: var(--text-muted) !important;
    white-space: nowrap;
}

body .cta-quote-btn {
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 12px;
    background: var(--accent-gold) !important;
    color: var(--text-main) !important;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-transform: uppercase;
    transition:
        background-color 0.18s ease,
        transform 0.18s ease;
}

body .cta-quote-btn:hover,
body .cta-quote-btn:focus-visible {
    background: #bce900 !important;
    color: var(--text-main) !important;
    outline: none;
    transform: translateY(-2px);
}

body .summary-guarantee {
    margin-top: 14px;
    color: var(--text-muted) !important;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

/* =========================================================
   9. DELIVERABLES CARD AND SLIDER
   ========================================================= */

body .deliverables-card {
    width: 100%;
    min-width: 0;
    margin-top: 34px;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #ffffff !important;
    box-shadow: var(--shadow-soft);
}

body .deliverables-card__heading,
body .price-cards-section__heading {
    margin: 0 0 22px;
    padding: 7px 0 7px 12px;
    border-bottom: 1px solid var(--border-dark);
    border-left: 5px solid var(--accent-gold);
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.2;
    text-transform: uppercase;
}

body .deliverables-grid {
    display: flex;
    width: 100%;
    gap: 18px;
    padding: 2px 2px 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

body .deliverables-grid::-webkit-scrollbar {
    display: none;
}

body .deliv-card {
    display: flex;
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    height: 322px;
    min-height: 322px;
    padding: 20px;
    flex-direction: column;
    scroll-snap-align: start;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text-main);
    box-shadow: var(--shadow-card);
}

body .deliv-title {
    display: flex;
    min-height: 50px;
    align-items: flex-start;
    margin: 0;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

body .deliv-desc {
    display: block;
    min-height: 96px;
    margin: 11px 0 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

body .deliv-why {
    margin-top: 0;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 0.84rem;
    line-height: 1.45;
}

body .deliv-why strong {
    display: block;
    margin-bottom: 5px;
    color: var(--accent-green);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

body .deliv-why span {
    display: block;
    color: var(--text-main);
}

body .deliverables-slider__controls {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
}

body .deliverables-slider__button {
    display: inline-flex !important;
    min-width: 88px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    visibility: visible !important;
    opacity: 1;
}

body .deliverables-slider__button:hover,
body .deliverables-slider__button:focus-visible {
    border-color: var(--accent-gold);
    outline: none;
    background: var(--accent-gold);
    color: var(--text-main);
}

body .deliverables-slider__button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

body .deliverables-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

body .deliverables-slider__dot {
    display: block !important;
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
}

body .deliverables-slider__dot.is-active,
body .deliverables-slider__dot:hover,
body .deliverables-slider__dot:focus-visible {
    outline: none;
    background: var(--accent-gold);
    transform: scale(1.25);
}

/* =========================================================
   10. A-LA-CARTE PRICE CARDS
   ========================================================= */
body .price-cards-section {
    width: 100%;
    min-width: 0;
    margin-top: 34px;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

body .price-cards-section__intro {
    margin: -6px 0 22px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

body .price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(194px, auto);
    gap: 14px;
    width: 100%;
    align-items: stretch;
}

body .price-card {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 194px;
    padding: 18px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color) !important;
    border-radius: 14px;
    background: #ffffff !important;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    box-shadow: var(--shadow-card);
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;
}

body .price-card:hover {
    border-color: var(--accent-gold) !important;
    background: #ffffff !important;
    box-shadow: var(--shadow-soft) !important;
    transform: translateY(-2px);
}

body .price-card:focus-within {
    border-color: var(--border-dark) !important;
    outline: 3px solid rgba(207, 255, 4, 0.72);
    outline-offset: 3px;
    background: #ffffff !important;
    box-shadow: var(--shadow-card) !important;
    transform: none;
}

body .price-card.selected {
    border-color: var(--accent-gold) !important;
    background: var(--lime-tint) !important;
    box-shadow:
        0 0 0 2px var(--accent-gold),
        0 8px 22px rgba(207, 255, 4, 0.24) !important;
}

body .price-card--linked-selected,
body .price-card--extended-selected {
    border-color: var(--accent-gold) !important;
    background:
        linear-gradient(135deg, rgba(207, 255, 4, 0.28), transparent),
        var(--lime-tint) !important;
    box-shadow:
        0 0 0 2px var(--accent-gold),
        0 8px 22px rgba(207, 255, 4, 0.24) !important;
}

body .price-card input.price-check {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 1;
    accent-color: var(--accent-green);
    cursor: pointer;
}

body .price-card__content {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding-left: 30px;
    flex: 1;
    flex-direction: column;
    text-align: left;
}

body .price-card__selection-row {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 27px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

body .price-card__check-indicator {
    display: none;
}

body .price-card__price {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    order: 2;
    margin: 0 0 0 auto;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--text-main);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

body .price-card__name {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 4px 0 0;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

body .price-card__description {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 14px 0 0;
    color: #303030;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    align-self: flex-start;
}

body .price-card__mobile-description {
    display: none;
}

body .price-card__linked-note {
    display: block;
    width: 100%;
    margin: 10px 0 0;
    color: var(--accent-green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
}

body .price-card__footer {
    display: flex;
    width: 100%;
    min-height: 27px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
}

body .price-card__category {
    display: block;
    min-width: 0;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
}

body .price-card__duration-banner {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-height: 27px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 6px 10px;
    border: 1px solid var(--accent-gold);
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--text-main);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 620px) {
    body .price-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(194px, auto);
    }

    body .price-card {
        height: 100%;
        min-height: 194px;
    }
}

/* =========================================================
   11. MODAL AND FORM CONTROLS
   ========================================================= */

body .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(22, 20, 15, 0.68);
    backdrop-filter: blur(4px);
}

body .modal-overlay.open,
body .modal-overlay[aria-hidden="false"] {
    display: flex;
}

body .modal-box {
    position: relative;
    width: 100%;
    max-width: 460px;
    padding: 32px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: #ffffff;
    color: var(--text-main);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

body .modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}

body .modal-box h2 {
    margin-bottom: 8px;
    color: var(--text-main);
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
}

body .modal-box p {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

body .form-group {
    margin-bottom: 14px;
}

body .form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-main);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body .form-group input,
body .form-group select,
body .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text-main);
    font-size: 0.95rem;
}

body .form-group input:focus,
body .form-group select:focus,
body .form-group textarea:focus {
    border-color: var(--border-dark);
    outline: 2px solid rgba(207, 255, 4, 0.6);
    outline-offset: 1px;
}

body .submit-pdf-btn {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    border: 0;
    border-radius: 12px;
    background: var(--accent-gold);
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

body .submit-pdf-btn:hover {
    background: #bce900;
}

/* =========================================================
   12. PDF PRINTABLE STYLES
   ========================================================= */

.pdf-document {
    width: 750px;
    padding: 40px;
    background: #ffffff;
    color: #111827;
    font-family: var(--font-sans);
}

.pdf-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.pdf-logo {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 900;
}

.pdf-tagline {
    color: #6b7280;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.pdf-meta {
    color: #374151;
    font-size: 0.85rem;
    text-align: right;
}

.pdf-title {
    margin-bottom: 4px;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 800;
}

.pdf-client-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    font-size: 0.85rem;
}

.pdf-table {
    width: 100%;
    margin-bottom: 24px;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.pdf-table th {
    padding: 10px;
    border-bottom: 2px solid #e5e7eb;
    background: #f3f4f6;
    font-weight: 700;
    text-align: left;
}

.pdf-table td {
    padding: 9px 10px;
    border-bottom: 1px solid #e5e7eb;
}

.pdf-table .text-right {
    text-align: right;
}

.pdf-totals {
    width: 320px;
    margin-bottom: 30px;
    margin-left: auto;
    font-size: 0.9rem;
}

.pdf-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.pdf-savings-highlight {
    color: #059669;
    font-weight: 700;
}

.pdf-grand-total {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 2px solid #111827;
    color: #000000;
    font-size: 1.25rem;
    font-weight: 900;
}

.pdf-footer {
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.75rem;
    line-height: 1.5;
}

.pdf-confidential {
    margin-top: 8px;
    color: #9ca3af;
    font-size: 0.7rem;
    text-align: center;
}

/* =========================================================
   13. PDF EXPORT WRAPPER
   ========================================================= */

#pdf-template-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

#pdf-template-wrapper.pdf-exporting {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 750px;
    height: auto;
    overflow: visible;
    pointer-events: none;
}

#pdf-printable-doc {
    width: 750px;
    min-height: 0;
    page-break-after: avoid;
    page-break-before: avoid;
}

.pdf-header,
.pdf-client-block,
.pdf-table,
.pdf-totals,
.pdf-footer {
    page-break-inside: avoid;
}

@media print {
    #pdf-template-wrapper {
        display: block;
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
    }
}

/* =========================================================
   14. RESPONSIVE LAYOUT
   ========================================================= */

@media (max-width: 1100px) {
    body .package-panel h2 {
        font-size: clamp(1.85rem, 3.5vw, 2.7rem);
    }

    body .package-explainer-card h2 {
        font-size: clamp(1.95rem, 3.8vw, 2.9rem);
    }

    body .deliv-card {
        flex-basis: calc((100% - 18px) / 2);
    }
}

@media (max-width: 960px) {
    body .package-summary-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    body .package-summary-layout .calc-sidebar {
        position: sticky !important;
        top: 16px !important;
        order: -1;
    }
}

@media (max-width: 700px) {
    body .package-top-cards {
        grid-template-columns: 1fr;
    }

    body .package-information-card {
        min-height: 0;
        overflow: visible;
    }

    body .package-explainer-card {
        min-height: 520px;
    }

    body .package-explainer-card h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    body .package-explainer-card__statement {
        margin-top: 80px;
        padding-top: 0;
    }

    body .deliverables-card,
    body .price-cards-section {
        padding: 24px;
    }
}

@media (max-width: 620px) {
    body .package-summary-layout .calc-sidebar {
        position: relative !important;
        top: auto !important;
    }

    body .deliv-card {
        flex-basis: 100%;
        height: auto;
        min-height: 0;
    }

    body .deliv-title,
    body .deliv-desc {
        min-height: 0;
    }

    body .deliv-why {
        margin-top: 18px;
    }

    body .price-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 194px;
    }

    body .price-card {
        height: 194px;
        min-height: 194px;
    }

    body .package-explainer-card__statement {
        max-width: 260px;
        font-size: 1.35rem !important;
    }
}

/* =========================================================
   15 . FINAL PACKAGE CARD TYPE SIZE
   ========================================================= */

body .package-information-card .package-panel h2 {
    max-width: 100%;
    margin-top: 24px;
    font-size: 2.2rem !important;
    line-height: 1.02 !important;
    letter-spacing: -0.02em;
    overflow-wrap: normal;
    word-break: normal;
}

body .package-explainer-card h2 {
    max-width: 100%;
    margin-top: 26px;
    font-size: 2.25rem !important;
    line-height: 0.99 !important;
    letter-spacing: -0.025em;
    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width: 1100px) {
    body .package-information-card .package-panel h2 {
        font-size: 2rem !important;
    }

    body .package-explainer-card h2 {
        font-size: 2.05rem !important;
    }
}

@media (max-width: 700px) {
    body .package-information-card .package-panel h2 {
        font-size: 2.15rem !important;
    }

    body .package-explainer-card h2 {
        font-size: 2.2rem !important;
    }
}

/* =========================================================
   4. SCROLL TO PACKAGE INFORMATION CARD
   ========================================================= */
const scrollToPackageCard = () => {
    const packageCard = document.querySelector(".package-information-card");

    if (!packageCard) {
        return;
    }

    const isMobile = window.matchMedia("(max-width: 620px)").matches;

    /*
     * The larger desktop value keeps the hero package buttons
     * visible above the selected package card.
     */
    const scrollPadding = isMobile ? 140 : 360;

    const packageCardTop =
        packageCard.getBoundingClientRect().top + window.scrollY;

    window.scrollTo({
        top: Math.max(0, packageCardTop - scrollPadding),
        behavior: "smooth"
    });
};

/* =========================================================
   15. MOBILE PRICING HERO AND TIER SWITCHER
   ========================================================= */

/* Hero copy */
body .calc-hero p.calc-hero-intro {
    max-width: 680px;
    margin: 0 auto;
    color: #e3dfd5;
    font-size: 1rem;
    line-height: 1.6;
}

/* Supporting Press & Play image */
body .calc-hero .press-play-logo {
    display: block;
    width: min(100%, 360px);
    height: auto;
    margin: 1.5rem auto 0;
}

/* Desktop: keep the tier buttons centered */
body .calc-hero .tier-switcher {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 12px 4px 16px;
}

/* Keep each desktop tier button consistent */
body .calc-hero .tier-btn {
    flex: 0 0 150px;
}

/* Mobile: convert the tier buttons into a horizontal slider */
@media (max-width: 700px) {
    body .calc-hero {
        min-height: 0;
        padding: 40px 18px 46px;
    }

    body .calc-hero h1 {
        max-width: 100%;
        margin-top: 20px;
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1;
    }

    body .calc-hero p.calc-hero-intro {
        max-width: 34rem;
        font-size: 0.94rem;
        line-height: 1.45;
    }

    body .calc-hero .press-play-logo {
        width: min(100%, 280px);
        margin-top: 1.25rem;
    }

    body .calc-hero .tier-switcher {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 10px;
        margin-top: 28px;
        padding: 12px 18px 16px 4px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    body .calc-hero .tier-switcher::-webkit-scrollbar {
        display: none;
    }

    body .calc-hero .tier-btn {
        flex: 0 0 142px;
        min-width: 142px;
        scroll-snap-align: start;
        padding: 13px 14px;
    }

    body .calc-hero .tier-btn .tier-name {
        font-size: 0.95rem;
    }

    body .calc-hero .tier-btn .tier-sub {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    body .calc-hero .tier-btn .tier-price {
        font-size: 1.08rem;
    }
}

/* Extra-small phones */
@media (max-width: 380px) {
    body .calc-hero {
        padding-right: 14px;
        padding-left: 14px;
    }

    body .calc-hero h1 {
        font-size: clamp(1.85rem, 8.7vw, 2.5rem);
    }

    body .calc-hero p.calc-hero-intro {
        font-size: 0.88rem;
    }

    body .calc-hero .tier-btn {
        flex-basis: 132px;
        min-width: 132px;
    }
}

/* =========================================================
   15. MOBILE PACKAGE FLOW
   ========================================================= */

@media (max-width: 960px) {
    body .package-summary-layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 28px !important;
    }

    /* 1. Calculator summary */
    body .package-summary-layout > .calc-sidebar {
        position: relative !important;
        top: auto !important;
        z-index: 1;
        order: 1 !important;
        width: 100% !important;
    }

    /* 2–3. Main package content */
    body .package-summary-layout > .pricing-content-column {
        display: flex !important;
        flex-direction: column !important;
        order: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    body .pricing-content-column > .package-top-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "explanation"
            "information" !important;
        gap: 22px !important;
        width: 100% !important;
    }

    body .pricing-content-column > .package-top-cards > .package-information-card {
        grid-area: information !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    body .pricing-content-column > .package-top-cards > .package-explainer-card {
        grid-area: explanation !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    /* 4. Deliverables */
    body .pricing-content-column > .deliverables-card {
        order: 3 !important;
        width: 100% !important;
    }

    /* 5. À-la-carte prices */
    body .pricing-content-column > .price-cards-section {
        order: 4 !important;
        width: 100% !important;
    }
}

@media (max-width: 700px) {
    body .package-summary-layout {
        gap: 22px !important;
        margin-bottom: 40px !important;
    }

    body .pricing-content-column > .package-top-cards {
        gap: 18px !important;
    }

    body .package-information-card {
        height: auto !important;
        min-height: 0 !important;
        padding: 28px 22px !important;
    }

    body .package-explainer-card {
        height: auto !important;
        min-height: 0 !important;
        padding: 28px 22px 32px !important;
    }

    body .package-explainer-card__statement {
        margin-top: 48px !important;
    }
}

/* =========================================================
   15. PRICING MOBILE CARD SYSTEM
   ========================================================= */

/* ---------------------------------------------------------
   Mobile package explanation slider
   --------------------------------------------------------- */

@media (max-width: 960px) {
    body .pricing-content-column > .package-top-cards {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 16px !important;
        width: 100% !important;
        padding: 4px 0 14px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    body .pricing-content-column > .package-top-cards::-webkit-scrollbar {
        display: none;
    }

    body .pricing-content-column > .package-top-cards > .package-explainer-card,
    body .pricing-content-column > .package-top-cards > .package-information-card {
        display: flex !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        margin: 0 !important;
        scroll-snap-align: start !important;
    }

    /* Explanation first, package information second */
    body .pricing-content-column > .package-top-cards > .package-explainer-card {
        order: 1 !important;
    }

    body .pricing-content-column > .package-top-cards > .package-information-card {
        order: 2 !important;
    }
}

@media (max-width: 700px) {
    body .pricing-content-column > .package-top-cards {
        gap: 14px !important;
        padding-bottom: 8px !important;
    }

    body .pricing-content-column > .package-top-cards > .package-explainer-card,
    body .pricing-content-column > .package-top-cards > .package-information-card {
        min-height: 0 !important;
        height: auto !important;
    }

    body .pricing-content-column > .package-top-cards > .package-explainer-card {
        padding: 28px 22px 32px !important;
    }

    body .pricing-content-column > .package-top-cards > .package-information-card {
        padding: 28px 22px !important;
    }

    body .package-explainer-card__statement {
        margin-top: 42px !important;
    }
}

/* ---------------------------------------------------------
   Deliverables slider controls
   --------------------------------------------------------- */

body .deliverables-card {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

body .deliverables-grid {
    width: 100% !important;
    min-width: 0 !important;
    overflow-x: auto !important;
}

body .deliverables-slider__controls {
    display: grid !important;
    grid-template-columns: minmax(68px, 88px) minmax(0, 1fr) minmax(68px, 88px) !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 18px 0 0 !important;
    overflow: hidden !important;
}

body .deliverables-slider__button {
    display: inline-flex !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 8px 6px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

body .deliverables-slider__dots {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 4px 2px !important;
    overflow-x: auto !important;
    scrollbar-width: none;
}

body .deliverables-slider__dots::-webkit-scrollbar {
    display: none;
}

body .deliverables-slider__dot {
    flex: 0 0 9px !important;
}

@media (max-width: 420px) {
    body .deliverables-slider__controls {
        grid-template-columns: 64px minmax(0, 1fr) 64px !important;
        gap: 6px !important;
    }

    body .deliverables-slider__button {
        font-size: 0.7rem !important;
    }
}

/* ---------------------------------------------------------
   À-la-carte price cards — mobile 2 × 2 grid
   --------------------------------------------------------- */

@media (max-width: 620px) {
    body .price-cards-section {
        width: 100% !important;
        min-width: 0 !important;
        padding: 20px 14px !important;
        overflow: hidden !important;
    }

    body .price-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: minmax(220px, auto) !important;
        gap: 10px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    body .price-card {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 100% !important;
        min-height: 220px !important;
        padding: 12px !important;
        overflow: hidden !important;
    }

    body .price-card__content {
        min-width: 0 !important;
        padding-left: 25px !important;
    }

    body .price-card__top {
        align-items: flex-start !important;
        gap: 6px !important;
    }

    body .price-card__name {
        min-width: 0 !important;
        font-size: 0.78rem !important;
        line-height: 1.2 !important;
    }

    body .price-card__price {
        flex: 0 0 auto !important;
        padding: 4px 6px !important;
        font-size: 0.66rem !important;
    }

    body .price-card__description {
        margin-top: 10px !important;
        font-size: 0.68rem !important;
        line-height: 1.35 !important;
        overflow-wrap: anywhere !important;
    }

    body .price-card__linked-note {
        font-size: 0.62rem !important;
        line-height: 1.25 !important;
        overflow-wrap: anywhere !important;
    }

    body .price-card__footer {
        flex-wrap: wrap !important;
        align-items: flex-end !important;
        gap: 6px !important;
        padding-top: 8px !important;
    }

    body .price-card__category {
        font-size: 0.6rem !important;
        line-height: 1.15 !important;
    }

    body .price-card__duration-banner {
        max-width: 100% !important;
        padding: 4px 6px !important;
        font-size: 0.56rem !important;
        white-space: normal !important;
    }
}

@media (max-width: 350px) {
    body .price-grid {
        gap: 7px !important;
    }

    body .price-card {
        min-height: 205px !important;
        padding: 10px !important;
    }

    body .price-card__content {
        padding-left: 23px !important;
    }

    body .price-card__name {
        font-size: 0.72rem !important;
    }

    body .price-card__description {
        font-size: 0.62rem !important;
    }
}

/* =========================================================
   16. MOBILE PRICE CARDS — FINAL ALIGNMENT
   ========================================================= */

.price-card__mobile-description {
    display: none;
}

@media (max-width: 620px) {
    body .price-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 170px !important;
        gap: 10px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    body .price-card {
        position: relative !important;
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
        padding: 10px !important;
        overflow: hidden !important;
    }

    /* Keep the functional checkbox accessible, but visually hidden */
    body .price-card > .price-check {
        position: absolute !important;
        inset: 0 !important;
        z-index: 3 !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        opacity: 0 !important;
        cursor: pointer !important;
    }

    body .price-card__content {
        position: relative !important;
        z-index: 1 !important;
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 100% !important;
        padding: 0 !important;
        flex-direction: column !important;
        pointer-events: none !important;
    }

    /* Tick and price share the same top alignment */
    body .price-card__selection-row {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-end !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 20px !important;
        min-height: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body .price-card__check-indicator {
        position: absolute !important;
        top: 11px !important;
        left: 11px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 19px !important;
        height: 19px !important;
        border: 1px solid #999 !important;
        border-radius: 2px !important;
        background: #ffffff !important;
    }

    body .price-card:has(.price-check:checked) .price-card__check-indicator {
        border-color: #267a00 !important;
        background: #267a00 !important;
    }

    body .price-card:has(.price-check:checked) .price-card__check-indicator::after {
        content: "✓";
        color: #ffffff;
        font-size: 15px;
        font-weight: 900;
        line-height: 1;
    }

    body .price-card__price {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        height: 19px !important;
        min-height: 19px !important;
        max-width: calc(100% - 28px) !important;
        margin: 0 !important;
        padding: 3px 6px !important;
        border-radius: 999px !important;
        font-size: 0.58rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    /* Title begins clearly below the tick and price row */
    body .price-card__name {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        height: 16px !important;
        min-height: 16px !important;
        margin: 5px 0 0 !important;
        padding: 0 !important;
        color: var(--text-main) !important;
        font-size: 0.66rem !important;
        font-weight: 700 !important;
        line-height: 1.12 !important;
        text-align: left !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Hide the full desktop explanation */
    body .price-card__description {
        display: none !important;
    }

    /* Short mobile explanation sits directly below the title */
    body .price-card__mobile-description {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 5px 0 0 !important;
        color: #303030 !important;
        font-size: 0.59rem !important;
        line-height: 1.25 !important;
        text-align: left !important;
        overflow: hidden !important;
        overflow-wrap: break-word !important;
    }

    body .price-card__linked-note {
        display: block !important;
        max-width: 100% !important;
        margin: 4px 0 0 !important;
        color: var(--accent-green) !important;
        font-size: 0.52rem !important;
        font-weight: 800 !important;
        line-height: 1.08 !important;
        overflow: hidden !important;
        overflow-wrap: break-word !important;
    }

    /* Category left, period badge right, on one line */
    body .price-card__footer {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 5px !important;
        width: 100% !important;
        min-width: 0 !important;
        margin-top: auto !important;
        padding-top: 4px !important;
        white-space: nowrap !important;
    }

    body .price-card__category {
        display: block !important;
        min-width: 0 !important;
        margin: 0 !important;
        color: var(--text-muted) !important;
        font-size: 0.52rem !important;
        line-height: 1 !important;
        text-align: left !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    body .price-card__duration-banner {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        max-width: 48% !important;
        min-height: 17px !important;
        margin-left: auto !important;
        padding: 3px 5px !important;
        border-radius: 999px !important;
        font-size: 0.47rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 350px) {
    body .price-grid {
        grid-auto-rows: 160px !important;
        gap: 7px !important;
    }

    body .price-card {
        height: 160px !important;
        min-height: 160px !important;
        max-height: 160px !important;
        padding: 9px !important;
    }

    body .price-card__check-indicator {
        top: 10px !important;
        left: 10px !important;
    }

    body .price-card__name {
        font-size: 0.62rem !important;
    }

    body .price-card__mobile-description {
        font-size: 0.56rem !important;
    }

    body .price-card__price {
        font-size: 0.55rem !important;
    }

    body .price-card__category {
        font-size: 0.48rem !important;
    }

    body .price-card__duration-banner {
        font-size: 0.43rem !important;
    }
}

/* =========================================================
   17. MOBILE PRICE CARD FINAL ALIGNMENT
   ========================================================= */

@media (max-width: 620px) {
    body .price-card {
        position: relative !important;
        width: 100% !important;
        height: 170px !important;
        min-height: 170px !important;
        max-height: 170px !important;
        padding: 10px !important;
        overflow: hidden !important;
    }

    body .price-card__content {
        position: static !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    body .price-card__selection-row {
        position: static !important;
        display: block !important;
        width: 100% !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Checkbox aligned from the card edge */
    body .price-card__check-indicator {
        position: absolute !important;
        top: 11px !important;
        left: 11px !important;
        z-index: 3 !important;
        width: 19px !important;
        height: 19px !important;
        margin: 0 !important;
    }

    /* Price aligned from the same card edge as the footer */
    body .price-card__price {
        position: absolute !important;
        top: 11px !important;
        right: 11px !important;
        z-index: 3 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 19px !important;
        min-height: 19px !important;
        max-width: calc(100% - 45px) !important;
        margin: 0 !important;
        padding: 3px 6px !important;
        border-radius: 999px !important;
        font-size: 0.58rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    /* Title */
    body .price-card__name {
        position: absolute !important;
        top: 39px !important;
        right: 10px !important;
        left: 10px !important;
        display: block !important;
        width: auto !important;
        height: 16px !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: var(--text-main) !important;
        font-size: 0.66rem !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
        text-align: left !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    body .price-card__description {
        display: none !important;
    }

    /* Short mobile explanation */
    body .price-card__mobile-description {
        position: absolute !important;
        top: 65px !important;
        right: 10px !important;
        left: 10px !important;
        display: -webkit-box !important;
        width: auto !important;
        max-height: 43px !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #303030 !important;
        font-size: 0.59rem !important;
        line-height: 1.25 !important;
        text-align: left !important;
        overflow: hidden !important;
        overflow-wrap: break-word !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 3 !important;
    }

    body .price-card__linked-note {
        position: absolute !important;
        top: 110px !important;
        right: 10px !important;
        left: 10px !important;
        display: -webkit-box !important;
        width: auto !important;
        max-height: 26px !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: var(--accent-green) !important;
        font-size: 0.52rem !important;
        font-weight: 800 !important;
        line-height: 1.08 !important;
        overflow: hidden !important;
        overflow-wrap: break-word !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
    }

    /* Category and period share the same right boundary */
    body .price-card__footer {
        position: absolute !important;
        right: 11px !important;
        bottom: 10px !important;
        left: 11px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 6px !important;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body .price-card__category {
        display: block !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        color: var(--text-muted) !important;
        font-size: 0.52rem !important;
        line-height: 1 !important;
        text-align: left !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    body .price-card__duration-banner {
        display: inline-flex !important;
        align-items: center !important;
        justify-self: end !important;
        width: max-content !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 17px !important;
        margin: 0 !important;
        padding: 3px 5px !important;
        border-radius: 999px !important;
        font-size: 0.47rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 350px) {
    body .price-card {
        height: 160px !important;
        min-height: 160px !important;
        max-height: 160px !important;
    }

    body .price-card__check-indicator {
        top: 10px !important;
        left: 10px !important;
    }

    body .price-card__price {
        top: 10px !important;
        right: 10px !important;
    }

    body .price-card__name {
        top: 38px !important;
        right: 9px !important;
        left: 9px !important;
    }

    body .price-card__mobile-description {
        top: 63px !important;
        right: 9px !important;
        left: 9px !important;
    }

    body .price-card__linked-note {
        top: 106px !important;
        right: 9px !important;
        left: 9px !important;
    }

    body .price-card__footer {
        right: 10px !important;
        bottom: 9px !important;
        left: 10px !important;
    }

    body .price-card__category {
        font-size: 0.48rem !important;
    }

    body .price-card__duration-banner {
        font-size: 0.43rem !important;
    }
}

/* =========================================================
   18. MOBILE PRICE CARD CATEGORY FIT
   ========================================================= */

@media (max-width: 620px) {
    body .price-card__footer {
        grid-template-columns: auto auto !important;
        justify-content: space-between !important;
        gap: 5px !important;
    }

    body .price-card__category {
        width: auto !important;
        max-width: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: nowrap !important;
    }

    body .price-card__duration-banner {
        justify-self: end !important;
    }
}