/* ===================================================
   superco Work/Play Membership — /play + /play-checkout
   Uses the site tokens from globals.css (Aeonik Pro, teal/green/soft-white).
   All classes are prefixed .wp- to avoid clashing with index.css.
   =================================================== */

.wp-page {
    --wp-teal: var(--color-dark-teal, #072A30);
    --wp-teal-2: #0B3A42;
    --wp-green: var(--color-signal-green, #17C64F);
    --wp-green-deep: #12A441;
    --wp-soft: var(--color-soft-white, #EDF2F2);
    --wp-ash: #B8C1C1;
    --wp-muted: #5E7377;
    --wp-line: rgba(7, 42, 48, .1);
    --wp-radius: 20px;
    font-family: var(--font-primary);
    color: var(--wp-teal);
    background: var(--wp-soft);
    height: auto;
}

.wp-page strong { font-weight: 700; }
.wp-page em { font-style: normal; }

.wp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.wp-container-narrow { max-width: 860px; }

.wp-section { padding: 110px 0; }

.wp-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--wp-green-deep);
    margin-bottom: 14px;
}

.wp-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.wp-head h2,
.wp-rec-copy h2 {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.02em;
    color: var(--wp-teal);
}
.wp-head p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--wp-muted);
}
.wp-head-light h2 { color: var(--wp-soft); }
.wp-head-light p { color: var(--wp-ash); }
.wp-head-light .wp-eyebrow { color: var(--wp-green); }

/* ---------- Buttons (match site CTA style) ---------- */
.wp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 30px;
    border-radius: 100px;
    border: 1.5px solid transparent;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    text-align: center;
}
.wp-btn-primary {
    background: var(--wp-green);
    color: var(--wp-teal);
    box-shadow: 0 8px 24px rgba(23, 198, 79, .28);
}
.wp-btn-primary:hover { background: var(--wp-teal); color: var(--wp-soft); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(7, 42, 48, .25); }
.wp-btn-ghost { color: var(--wp-teal); border-color: rgba(7, 42, 48, .25); }
.wp-btn-ghost:hover { border-color: var(--wp-teal); background: rgba(7, 42, 48, .04); }
.wp-btn-outline { color: var(--wp-teal); border-color: var(--wp-teal); }
.wp-btn-outline:hover { background: var(--wp-teal); color: var(--wp-soft); }
.wp-btn-block { width: 100%; }
.wp-btn:disabled { opacity: .7; cursor: progress; transform: none; }

/* ---------- HERO ---------- */
.wp-hero {
    padding: calc(var(--header-height) + 72px) 0 96px;
    background:
        radial-gradient(900px 500px at 85% 10%, rgba(23, 198, 79, .12), transparent 70%),
        var(--wp-soft);
    overflow: hidden;
}
.wp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.wp-hero h1 {
    font-size: clamp(42px, 5.6vw, 76px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.035em;
    color: var(--wp-teal);
}
.wp-accent { color: var(--wp-green); }
.wp-hero-sub {
    margin-top: 24px;
    max-width: 560px;
    font-size: 19px;
    line-height: 1.6;
    color: var(--wp-muted);
}
.wp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.wp-hero-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 36px;
    padding: 0;
    font-size: 15px;
    color: var(--wp-muted);
}
.wp-hero-points li { position: relative; padding-left: 18px; }
.wp-hero-points li::before {
    content: "";
    position: absolute; left: 0; top: .55em;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--wp-green);
}
.wp-hero-points strong { color: var(--wp-teal); }

.wp-hero-media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4 / 3.4;
    box-shadow: 0 30px 70px rgba(7, 42, 48, .18);
}
.wp-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wp-hero-chip {
    position: absolute;
    left: 20px; bottom: 20px;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 18px;
    border-radius: 100px;
    background: rgba(237, 242, 242, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 14px; font-weight: 500;
    color: var(--wp-teal);
}
.wp-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--wp-green);
    box-shadow: 0 0 0 4px rgba(23, 198, 79, .2);
}

/* ---------- WHY ---------- */
.wp-why { background: #fff; }
.wp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wp-why-card {
    background: var(--wp-soft);
    border-radius: var(--wp-radius);
    padding: 36px 32px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.wp-why-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(7, 42, 48, .08); }
.wp-icon {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--wp-teal);
    color: var(--wp-green);
    margin-bottom: 24px;
}
.wp-icon svg { width: 26px; height: 26px; }
.wp-why-card h3, .wp-how-card h3 { font-size: 22px; font-weight: 700; line-height: 1.25; margin-bottom: 10px; }
.wp-why-card p, .wp-how-card p { font-size: 16px; line-height: 1.6; color: var(--wp-muted); }

/* ---------- PLANS ---------- */
.wp-plans {
    background:
        radial-gradient(800px 420px at 50% 0%, rgba(23, 198, 79, .14), transparent 70%),
        var(--wp-teal);
}
.wp-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.wp-plan {
    position: relative;
    display: flex; flex-direction: column;
    background: #fff;
    border-radius: var(--wp-radius);
    padding: 36px 30px 30px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .14);
    transition: transform .25s ease;
}
.wp-plan:hover { transform: translateY(-6px); }
.wp-plan-featured { outline: 3px solid var(--wp-green); outline-offset: -3px; }
.wp-plan-tag {
    position: absolute; top: -14px; left: 30px;
    padding: 7px 14px;
    border-radius: 100px;
    background: var(--wp-green);
    color: var(--wp-teal);
    font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.wp-plan-name {
    font-size: 15px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--wp-muted);
}
.wp-plan-price {
    margin-top: 10px;
    font-size: clamp(40px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1;
    color: var(--wp-teal);
}
.wp-plan-meta { margin-top: 10px; font-size: 14px; color: var(--wp-muted); min-height: 1.6em; }
.wp-plan-list {
    list-style: none; padding: 26px 0 0; margin: 26px 0 30px;
    border-top: 1px solid var(--wp-line);
    display: flex; flex-direction: column; gap: 18px;
    flex-grow: 1;
}
.wp-plan-list li { display: flex; gap: 12px; align-items: flex-start; }
.wp-plan-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--wp-green); }
.wp-plan-list strong { display: block; font-size: 17px; color: var(--wp-teal); }
.wp-plan-list span { display: block; margin-top: 2px; font-size: 14px; color: var(--wp-muted); }
.wp-plans-note {
    margin-top: 36px;
    text-align: center;
    font-size: 14px;
    color: var(--wp-ash);
}
.wp-plans-note a { color: var(--wp-green); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- HOW IT WORKS ---------- */
.wp-how { background: var(--wp-soft); }
.wp-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wp-how-card {
    background: #fff;
    border-radius: var(--wp-radius);
    padding: 36px 32px;
}
.wp-step {
    display: inline-block;
    font-size: 14px; font-weight: 700; letter-spacing: .08em;
    color: var(--wp-green-deep);
    margin-bottom: 20px;
}
.wp-how-example { background: var(--wp-teal); }
.wp-how-example h3 { color: var(--wp-soft); }
.wp-how-example p { color: var(--wp-ash); }
.wp-how-example strong { color: var(--wp-green); }
.wp-how-example .wp-step { color: var(--wp-green); }

/* ---------- GALLERY / TILES ---------- */
.wp-workspace { background: #fff; }
.wp-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}
.wp-tile {
    position: relative;
    margin: 0;
    border-radius: var(--wp-radius);
    overflow: hidden;
    background: var(--wp-teal);
}
.wp-tile-wide { grid-column: span 2; grid-row: span 2; }
.wp-tile img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s ease;
}
.wp-tile:hover img { transform: scale(1.05); }
.wp-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 42, 48, .6));
    pointer-events: none;
}
.wp-tile figcaption {
    position: absolute; left: 14px; bottom: 14px; z-index: 1;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(7, 42, 48, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--wp-soft);
    font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
}

/* ---------- RECREATION (secondary) ---------- */
.wp-rec { background: var(--wp-soft); }
.wp-rec-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 56px; align-items: center; }
.wp-rec-copy p { margin: 18px 0 30px; font-size: 18px; line-height: 1.6; color: var(--wp-muted); }
.wp-rec-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.wp-tile-sm { aspect-ratio: 4 / 3; }

/* ---------- FAQ ---------- */
.wp-faq { background: #fff; }
.wp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.wp-faq-item {
    background: var(--wp-soft);
    border-radius: 16px;
    padding: 0 26px;
}
.wp-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 36px 22px 0;
    position: relative;
    font-size: 18px; font-weight: 500;
    color: var(--wp-teal);
}
.wp-faq-item summary::-webkit-details-marker { display: none; }
.wp-faq-item summary::after {
    content: "+";
    position: absolute; right: 0; top: 50%;
    transform: translateY(-50%);
    font-size: 26px; font-weight: 300;
    color: var(--wp-green-deep);
    transition: transform .25s ease;
}
.wp-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.wp-faq-item p { padding: 0 0 24px; font-size: 16px; line-height: 1.65; color: var(--wp-muted); }
.wp-faq-item a { color: var(--wp-teal); text-decoration: underline; text-underline-offset: 3px; }
/* Pending management-approved copy — must be replaced before publishing. */
.wp-tbc {
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 12px !important;
    border-radius: 8px;
    background: #FFF4D6;
    color: #7A5A00 !important;
    font-size: 14px !important;
}

/* ---------- CLOSING ---------- */
.wp-closing {
    padding: 110px 0;
    text-align: center;
    background:
        radial-gradient(700px 380px at 50% 120%, rgba(23, 198, 79, .18), transparent 65%),
        var(--wp-teal);
}
.wp-closing h2 {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.08;
    color: var(--wp-soft);
}
.wp-closing p { margin: 18px auto 36px; max-width: 560px; font-size: 18px; line-height: 1.6; color: var(--wp-ash); }

/* ---------- Mobile sticky buy bar ---------- */
.wp-sticky-bar { display: none; }

/* ===================================================
   CHECKOUT
   =================================================== */
.wp-checkout-page .header-container { justify-content: space-between; }
.wp-secure-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 500;
    color: var(--wp-teal);
}
.wp-secure-badge svg { width: 18px; height: 18px; color: var(--wp-green-deep); }

.wp-checkout { padding: calc(var(--header-height) + 40px) 0 90px; min-height: 80vh; }
.wp-back {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 15px; color: var(--wp-muted);
}
.wp-back svg { width: 18px; height: 18px; }
.wp-back:hover { color: var(--wp-teal); }

.wp-steps {
    list-style: none;
    display: flex; gap: 10px; flex-wrap: wrap;
    padding: 0;
    margin: 24px 0 36px;
}
.wp-steps li {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px 8px 8px;
    border-radius: 100px;
    background: #fff;
    font-size: 14px; font-weight: 500;
    color: var(--wp-muted);
}
.wp-steps li span {
    width: 26px; height: 26px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--wp-soft);
    font-size: 13px; font-weight: 700;
}
.wp-steps li.is-active { background: var(--wp-teal); color: var(--wp-soft); }
.wp-steps li.is-active span { background: var(--wp-green); color: var(--wp-teal); }
.wp-steps li.is-done { color: var(--wp-teal); }
.wp-steps li.is-done span { background: var(--wp-green); color: var(--wp-teal); }

.wp-checkout-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 32px;
    align-items: start;
}
.wp-checkout-form {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
}
.wp-fieldset { border: 0; padding: 0; margin: 0 0 34px; min-width: 0; }
.wp-fieldset legend {
    font-size: 22px; font-weight: 700;
    color: var(--wp-teal);
    margin-bottom: 18px;
    padding: 0;
}

.wp-plan-options { display: flex; flex-direction: column; gap: 12px; }
.wp-plan-option {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 20px;
    border: 1.5px solid var(--wp-line);
    border-radius: 16px;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
}
.wp-plan-option:hover { border-color: rgba(7, 42, 48, .3); }
.wp-plan-option.is-selected { border-color: var(--wp-green); background: rgba(23, 198, 79, .06); }
.wp-plan-option input {
    appearance: none; -webkit-appearance: none;
    flex-shrink: 0;
    width: 22px; height: 22px;
    margin: 0;
    border: 2px solid rgba(7, 42, 48, .3);
    border-radius: 50%;
    display: grid; place-items: center;
    cursor: pointer;
}
.wp-plan-option input:checked { border-color: var(--wp-green); }
.wp-plan-option input:checked::after {
    content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--wp-green);
}
.wp-plan-option input:focus-visible { outline: 2px solid var(--wp-teal); outline-offset: 2px; }
.wp-plan-option-body { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.wp-plan-option-name { font-size: 17px; font-weight: 700; color: var(--wp-teal); }
.wp-plan-option-name em {
    margin-left: 8px;
    padding: 3px 9px;
    border-radius: 100px;
    background: var(--wp-green);
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    vertical-align: 2px;
}
.wp-plan-option-desc { font-size: 14px; color: var(--wp-muted); }
.wp-plan-option-price { font-size: 20px; font-weight: 700; color: var(--wp-teal); }

.wp-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wp-field-full { grid-column: 1 / -1; }
.wp-field label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 500; color: var(--wp-teal); }
.wp-field input,
.wp-field select,
.wp-phone {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1.5px solid var(--wp-line);
    border-radius: 12px;
    background: #fff;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--wp-teal);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.wp-field select { appearance: none; -webkit-appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23072A30' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center / 18px; }
.wp-field input:focus,
.wp-field select:focus,
.wp-phone:focus-within { outline: none; border-color: var(--wp-green); box-shadow: 0 0 0 4px rgba(23, 198, 79, .15); }
.wp-phone { display: flex; align-items: center; gap: 10px; padding: 0 0 0 16px; }
.wp-phone span { color: var(--wp-muted); font-size: 16px; padding-right: 10px; border-right: 1px solid var(--wp-line); line-height: 24px; }
.wp-phone input { border: 0; height: 100%; padding: 0 16px 0 0; box-shadow: none !important; background: transparent; }
.wp-field input.is-invalid,
.wp-phone:has(input.is-invalid) { border-color: #D64545; }

.wp-error { display: none; margin-top: 6px; font-size: 13px; color: #D64545; }
.wp-error.is-visible { display: block; }

.wp-check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 14px; line-height: 1.55; color: var(--wp-muted); }
.wp-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--wp-green); flex-shrink: 0; }
.wp-check a { color: var(--wp-teal); text-decoration: underline; text-underline-offset: 3px; }

.wp-form-alert {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #FFF1F1;
    color: #9B2C2C;
    font-size: 14px; line-height: 1.5;
}
.wp-pay-btn { margin-top: 26px; padding: 19px 30px; font-size: 17px; font-weight: 700; }
.wp-pay-note {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 14px;
    font-size: 13px; color: var(--wp-muted); text-align: center;
}
.wp-pay-note svg { width: 15px; height: 15px; flex-shrink: 0; }

.wp-summary {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}
.wp-summary-media { aspect-ratio: 16 / 8; overflow: hidden; }
.wp-summary-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wp-summary-body { padding: 28px 30px 30px; }
.wp-summary h2 { font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--wp-teal); }
.wp-summary-tenure { margin-top: 6px; font-size: 14px; color: var(--wp-muted); }
.wp-summary-list { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.wp-summary-list li { display: flex; justify-content: space-between; font-size: 15px; color: var(--wp-muted); }
.wp-summary-list strong { color: var(--wp-teal); }
.wp-summary-total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-top: 20px;
    border-top: 1px dashed rgba(7, 42, 48, .2);
    font-size: 17px; font-weight: 500;
}
.wp-summary-total strong { font-size: 32px; letter-spacing: -.02em; }
.wp-summary-help { margin-top: 18px; font-size: 13px; color: var(--wp-muted); }
.wp-summary-help a { color: var(--wp-teal); text-decoration: underline; }

/* Confirmation */
.wp-confirm {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
}
.wp-confirm-icon {
    width: 76px; height: 76px;
    margin: 0 auto 24px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--wp-green);
    color: var(--wp-teal);
    box-shadow: 0 0 0 10px rgba(23, 198, 79, .15);
}
.wp-confirm-icon svg { width: 36px; height: 36px; }
.wp-confirm h1 { font-size: clamp(32px, 4vw, 44px); font-weight: 700; letter-spacing: -.02em; }
.wp-confirm-lead { margin: 14px auto 0; max-width: 520px; font-size: 17px; line-height: 1.6; color: var(--wp-muted); }
.wp-confirm-details {
    margin: 32px 0;
    padding: 8px 24px;
    border-radius: 16px;
    background: var(--wp-soft);
    text-align: left;
}
.wp-confirm-details div {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--wp-line);
    font-size: 15px;
}
.wp-confirm-details div:last-child { border-bottom: 0; }
.wp-confirm-details dt { color: var(--wp-muted); }
.wp-confirm-details dd { margin: 0; font-weight: 700; text-align: right; overflow-wrap: anywhere; }
.wp-confirm-next { margin-bottom: 30px; font-size: 15px; line-height: 1.6; color: var(--wp-muted); }

.wp-checkout-footer {
    padding: 28px 24px;
    text-align: center;
    border-top: 1px solid var(--wp-line);
    font-size: 13px;
    color: var(--wp-muted);
}
.wp-checkout-footer a { color: var(--wp-teal); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .wp-container { padding: 0 24px; }
    .wp-section, .wp-closing { padding: 80px 0; }
    .wp-hero { padding: calc(var(--header-height) + 48px) 0 72px; }
    .wp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .wp-hero-media { aspect-ratio: 16 / 10; }
    .wp-plan-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 30px; }
    .wp-why-grid, .wp-how-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .wp-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .wp-rec-grid { grid-template-columns: 1fr; gap: 36px; }
    .wp-checkout-grid { grid-template-columns: 1fr; }
    .wp-summary { position: static; order: -1; }
    .wp-summary-media { display: none; }
}

@media (max-width: 640px) {
    .wp-container { padding: 0 16px; }
    .wp-section, .wp-closing { padding: 64px 0; }
    .wp-head { margin-bottom: 36px; }
    .wp-head p, .wp-hero-sub, .wp-rec-copy p { font-size: 16px; }
    .wp-hero-actions .wp-btn { flex: 1 1 100%; }
    .wp-why-card, .wp-how-card { padding: 28px 24px; }
    .wp-plan { padding: 32px 24px 26px; }
    .wp-gallery { grid-auto-rows: 150px; gap: 10px; }
    .wp-tile figcaption { left: 10px; bottom: 10px; font-size: 11px; padding: 6px 10px; }
    .wp-faq-item { padding: 0 18px; }
    .wp-faq-item summary { font-size: 16px; }

    .wp-checkout-form { padding: 26px 18px; }
    .wp-field-grid { grid-template-columns: 1fr; }
    .wp-plan-option { padding: 16px 14px; gap: 12px; }
    .wp-plan-option-price { font-size: 17px; }
    .wp-steps { flex-wrap: nowrap; gap: 6px; margin: 20px 0 24px; }
    .wp-steps li { font-size: 12px; gap: 6px; padding: 5px 10px 5px 5px; white-space: nowrap; }
    .wp-steps li span { width: 22px; height: 22px; font-size: 12px; }
    .wp-confirm-details { padding: 4px 16px; }
    .wp-confirm-details div { flex-direction: column; gap: 4px; }
    .wp-confirm-details dd { text-align: left; }
    .wp-secure-badge { font-size: 13px; }
    .wp-confirm { padding: 40px 20px; }
    .wp-summary-body { padding: 22px 20px; }

    .wp-sticky-bar {
        display: flex; align-items: center; justify-content: space-between; gap: 12px;
        position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 900;
        padding: 12px 12px 12px 20px;
        border-radius: 100px;
        background: var(--wp-teal);
        color: var(--wp-soft);
        box-shadow: 0 12px 30px rgba(7, 42, 48, .35);
        transform: translateY(140%);
        transition: transform .3s ease;
    }
    .wp-sticky-bar.is-visible { transform: translateY(0); }
    .wp-sticky-bar div { display: flex; flex-direction: column; line-height: 1.2; }
    .wp-sticky-label { font-size: 12px; color: var(--wp-ash); }
    .wp-sticky-bar strong { font-size: 17px; }
    .wp-sticky-bar .wp-btn { padding: 13px 22px; font-size: 15px; }
}

/* index.css styles bare <section>; keep the [hidden] attribute authoritative. */
.wp-page [hidden] { display: none !important; }
.wp-checkout-grid > * { min-width: 0; }
