/* ============================================================
   Registration funnel — shared design system
   Mirrors the marketing homepage look (wwwroot/css/marketing/marketing-layout.css)
   Used by: Registration/Home Index, PlanSelection, Checkout, Success
   ============================================================ */

:root {
    --navy-980: #051326;
    --navy-940: #071a32;
    --navy-900: #082142;
    --ink: #0a1831;
    --ink-2: #22304a;
    --muted: #647089;
    --line: #d9e1eb;
    --line-dark: rgba(255,255,255,.14);
    --cloud: #f4f7fb;
    --cream: #fff8ef;
    --orange: #ff7a18;
    --orange-dark: #e95f00;
    --green: #23b26d;
    --danger: #e64c3c;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-sm: 0 10px 28px rgba(5, 19, 38, .10);
    --shadow-md: 0 24px 64px rgba(5, 19, 38, .16);
    --ring: 0 0 0 3px rgba(255, 122, 24, .13);
}

/* The layout wraps page content in a single <main><section> wrapper that
   carries default spacing; zero it so the dark hero touches the header.
   Page sections are nested inside the wrapper and manage their own padding. */
main > section {
    padding: 0 !important;
}

/* ------------------------------------------------------------
   Dark navy bands (heroes + accent sections) with sparkle texture
   ------------------------------------------------------------ */
.hero,
.hero-header,
.success-header,
.plans-section,
.section-dark {
    position: relative;
    color: #fff;
    background: var(--navy-940);
    overflow: hidden;
    isolation: isolate;
}

    .hero::before,
    .hero-header::before,
    .success-header::before,
    .plans-section::before,
    .section-dark::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
        pointer-events: none;
        z-index: -1;
    }

.hero > .container,
.hero-header > .container,
.success-header > .container,
.plans-section > .container,
.section-dark > .container {
    position: relative;
    z-index: 2;
}

/* ------------------------------------------------------------
   Shared hero content
   ------------------------------------------------------------ */
.hero {
    padding: clamp(48px, 7vw, 82px) 0 clamp(56px, 7vw, 86px);
}

.hero-header,
.success-header {
    padding: clamp(44px, 6vw, 70px) 0 clamp(48px, 6vw, 76px);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-pill,
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: rgb(50 63 81);
    border: 1px solid rgb(123 133 147);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .hero-pill i,
    .hero-badge i {
        color: var(--orange);
    }

.hero-title {
    margin: 22px 0 0;
    color: #fff;
    font-size: clamp(2.3rem, 4.6vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -.045em;
    font-weight: 700;
}

    .hero-title em {
        color: var(--orange);
        font-style: normal;
    }

.hero-sub,
.hero-subtitle {
    margin: 20px 0 0;
    color: rgba(255,255,255,.80);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-content .hero-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ------------------------------------------------------------
   Buttons (marketing style)
   ------------------------------------------------------------ */
.btn-brand,
.btn-select-plan,
.btn-complete-purchase,
.btn-onboarding,
.btn-print {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 900;
    letter-spacing: -.01em;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

    .btn-brand:hover,
    .btn-select-plan:hover,
    .btn-complete-purchase:hover,
    .btn-onboarding:hover,
    .btn-print:hover {
        transform: translateY(-1px);
        text-decoration: none;
    }

.btn-brand,
.btn-complete-purchase,
.btn-onboarding,
.btn-select-plan.btn-primary {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: none;
}

    .btn-brand:hover,
    .btn-brand:focus,
    .btn-complete-purchase:hover,
    .btn-complete-purchase:focus,
    .btn-onboarding:hover,
    .btn-onboarding:focus,
    .btn-select-plan.btn-primary:hover,
    .btn-select-plan.btn-primary:focus {
        color: #fff;
        background: var(--orange-dark);
        border-color: var(--orange-dark);
    }

.btn-print,
.btn-select-plan.btn-outline-primary {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

    .btn-print:hover,
    .btn-print:focus,
    .btn-select-plan.btn-outline-primary:hover,
    .btn-select-plan.btn-outline-primary:focus {
        color: var(--ink);
        background: #fff;
        border-color: #b8c5d6;
        box-shadow: var(--shadow-sm);
    }

.btn-brand:disabled,
.btn-select-plan:disabled,
.btn-complete-purchase:disabled {
    opacity: .65;
    transform: none;
    cursor: default;
}

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */
.form-control {
    border-radius: 12px;
    border-color: #cfd9e6;
    color: var(--ink);
}

    .form-control:focus {
        border-color: var(--orange);
        box-shadow: var(--ring);
    }

.input-group-text {
    border-radius: 12px 0 0 12px;
    border-color: #cfd9e6;
    background: #f8fbff;
    color: var(--muted);
}

.form-check-input {
    accent-color: var(--orange);
}

label.form-label {
    color: var(--ink-2);
    font-weight: 700;
}

/* ============================================================
   PAGE: Lead capture (Registration/Home/Index)
   ============================================================ */
.hero-copy {
    max-width: 720px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 1rem;
}

    .feature-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: .8rem;
    }

    .feature-list .fi {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        margin-right: 12px;
        margin-top: 3px;
        border-radius: 7px;
        display: grid;
        place-items: center;
        color: #fff;
        background: var(--orange);
        font-size: .8rem;
        font-weight: 900;
        line-height: 1;
    }

    .feature-list .ft {
        flex: 1 1 auto;
        line-height: 1.5;
        font-size: 1.05rem;
        color: rgba(255,255,255,.82);
    }

        .feature-list .ft strong {
            color: #fff;
        }

.form-card {
    border: 1px solid rgba(255,255,255,.26);
    border-radius: var(--radius-xl);
    box-shadow: 0 34px 90px rgba(0,0,0,.34);
    background: #fff;
    color: var(--ink);
}

    .form-card h2 {
        color: var(--ink);
        font-weight: 900;
        letter-spacing: -.03em;
    }

    .form-card a {
        color: var(--navy-900);
        font-weight: 700;
        text-decoration: underline;
    }

        .form-card a:hover {
            color: var(--orange-dark);
        }

.sticky-lg {
    position: static;
}

@media (min-width: 992px) {
    .sticky-lg {
        position: sticky;
        top: 96px;
    }
}

/* Benefits row under the capture hero */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,122,24,.36);
    background: var(--cream);
    color: var(--orange);
    font-size: 1.2rem;
}

.section-dark .card-like {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-lg);
}

.faq .card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
}

/* ============================================================
   PAGE: Plan selection
   ============================================================ */
.welcome-alert {
    margin: 28px auto 0;
    max-width: 640px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    text-align: center;
}

    .welcome-alert h4 {
        margin: 0 0 6px;
        color: #fff;
        font-size: 1.15rem;
        font-weight: 900;
        letter-spacing: -.02em;
    }

        .welcome-alert h4 i {
            color: var(--orange);
            margin-right: 10px;
        }

    .welcome-alert p {
        margin: 0;
        color: rgba(255,255,255,.75);
    }

.plans-section {
    padding: clamp(44px, 6vw, 72px) 0 clamp(52px, 6vw, 84px);
}

.section-intro {
    max-width: 790px;
    margin: 0 auto 36px;
    text-align: center;
}

    .section-intro h2 {
        margin: 0;
        color: #fff;
        font-size: clamp(1.8rem, 3.4vw, 2.8rem);
        line-height: 1.05;
        letter-spacing: -.04em;
        font-weight: 700;
    }

    .section-intro p {
        margin: 14px 0 0;
        color: rgba(255,255,255,.70);
        font-size: 1.08rem;
    }

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 26px 70px rgba(0,0,0,.22);
    transition: transform .16s ease, box-shadow .16s ease;
}

    .plan-card:hover {
        transform: translateY(-3px);
    }

    .plan-card.featured {
        border: 2px solid var(--orange);
    }

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}

.plan-name {
    margin: 0;
    color: var(--ink);
    font-size: 1.55rem;
    letter-spacing: -.03em;
    line-height: 1.1;
    font-weight: 900;
}

.plan-desc {
    margin: 10px 0 0;
    color: var(--muted);
    max-width: 460px;
    min-height: 48px;
}

.plan-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--orange);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
}

.price-option {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    background: #f8fbff;
}

    .price-option.best {
        border-color: var(--orange);
        background: var(--cream);
    }

    .price-option small {
        display: block;
        color: var(--muted);
        font-size: .75rem;
        font-weight: 900;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

.price {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    margin-top: 8px;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--ink);
}

    .price sup {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-top: 6px;
    }

    .price strong {
        font-size: clamp(2.4rem, 4vw, 3.4rem);
        line-height: .86;
    }

    .price span {
        align-self: flex-end;
        margin-bottom: 3px;
        color: var(--muted);
        font-weight: 900;
        letter-spacing: 0;
    }

.savings {
    margin: 12px 0 0;
    color: var(--orange-dark);
    font-weight: 900;
    font-size: .9rem;
}

.plan-features {
    margin: 24px 0 0;
}

    .plan-features ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 11px;
        color: var(--ink-2);
        font-weight: 700;
    }

    .plan-features li {
        display: grid;
        grid-template-columns: 22px 1fr;
        gap: 10px;
        align-items: start;
    }

        .plan-features li i {
            width: 22px;
            height: 22px;
            border-radius: 7px;
            display: grid;
            place-items: center;
            color: #fff;
            background: var(--orange);
            font-size: .72rem;
            margin-top: 1px;
        }

.feature-text.feature-highlighted {
    font-weight: 900;
    color: var(--ink);
}

.plan-action {
    margin-top: auto;
    padding-top: 26px;
}

.btn-select-plan {
    width: 100%;
}

/* Trust indicators */
.trust-section {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: clamp(44px, 6vw, 72px) 0;
}

.trust-item {
    text-align: center;
    padding: 12px 18px;
}

.trust-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 16px;
    border-radius: 24px;
    border: 2px solid var(--orange);
    display: grid;
    place-items: center;
    color: var(--orange);
    font-size: 1.8rem;
}

.trust-item h5 {
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -.02em;
}

.trust-item p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .96rem;
}

/* Help section */
.help-section {
    background: var(--cloud);
    padding: clamp(44px, 6vw, 72px) 0;
}

    .help-section h3 {
        color: var(--ink);
        font-weight: 900;
        letter-spacing: -.03em;
    }

.help-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

    .help-card h6 {
        color: var(--ink);
        font-weight: 900;
        font-size: 1.05rem;
    }

    .help-card p {
        color: var(--muted);
        margin: 8px 0 0;
    }

.contact-info {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 28px;
}

.contact-item {
    color: var(--ink-2);
    font-weight: 700;
}

    .contact-item i {
        color: var(--orange);
    }

/* ============================================================
   PAGE: Checkout
   ============================================================ */
.checkout-section {
    background: var(--cloud);
    padding: clamp(44px, 6vw, 64px) 0 clamp(52px, 6vw, 84px);
}

.order-summary,
.payment-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

    .order-summary h3,
    .payment-form h3 {
        margin: 0 0 20px;
        color: var(--ink);
        font-size: 1.3rem;
        font-weight: 900;
        letter-spacing: -.02em;
    }

        .order-summary h3 i,
        .payment-form h3 i {
            color: var(--orange);
        }

.order-summary .text-primary {
    color: var(--navy-900) !important;
    font-weight: 900;
}

.plan-summary {
    background: var(--cream);
    border: 1px solid rgba(255,122,24,.28);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.plan-header-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.plan-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--orange);
    font-size: 1.3rem;
}

.plan-title-section h4 {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -.02em;
}

.plan-content-section {
    margin-top: 12px;
}

.plan-description-section p {
    margin: 0;
    color: var(--muted);
}

.plan-price-section {
    margin-top: 12px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    font-weight: 900;
    color: var(--ink);
}

    .price-amount .currency {
        font-size: 1.1rem;
        margin-top: 4px;
    }

    .price-amount .amount {
        font-size: 2.2rem;
        line-height: .95;
        letter-spacing: -.04em;
    }

.price-period {
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.pricing-breakdown {
    margin-top: 20px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-2);
}

    .breakdown-row.total {
        border-bottom: 0;
        border-top: 2px solid var(--ink);
        color: var(--ink);
        font-weight: 900;
        font-size: 1.08rem;
    }

.features-section {
    margin-top: 20px;
}

    .features-section h6 {
        color: var(--ink);
        font-weight: 900;
        font-size: .95rem;
    }

        .features-section h6 i {
            color: var(--green);
            margin-right: 6px;
        }

    .features-section ul {
        margin: 12px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 9px;
        color: var(--ink-2);
        font-weight: 700;
        font-size: .93rem;
    }

    .features-section li {
        display: grid;
        grid-template-columns: 20px 1fr;
        gap: 9px;
        align-items: start;
    }

        .features-section li i {
            width: 20px;
            height: 20px;
            border-radius: 6px;
            display: grid;
            place-items: center;
            color: #fff;
            background: var(--orange);
            font-size: .66rem;
            margin-top: 1px;
        }

.security-info {
    background: var(--cream);
    border: 1px solid rgba(255,122,24,.28);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 4px 12px;
    align-items: center;
}

    .security-info i {
        grid-row: span 2;
        color: var(--orange);
        font-size: 1.5rem;
    }

    .security-info h5 {
        margin: 0;
        color: var(--ink);
        font-size: 1rem;
        font-weight: 900;
    }

    .security-info p {
        margin: 0;
        color: var(--muted);
        font-size: .88rem;
    }

.payment-form label {
    color: var(--ink-2);
    font-weight: 700;
}

.billing-address-section h5 {
    color: var(--ink);
    font-weight: 900;
    font-size: 1.05rem;
}

.btn-complete-purchase {
    width: 100%;
    min-height: 52px;
    font-size: 1.05rem;
}

.checkout-navigation {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
}

    .checkout-navigation a {
        color: var(--navy-900);
        font-weight: 700;
    }

        .checkout-navigation a:hover {
            color: var(--orange-dark);
            text-decoration: none;
        }

/* ============================================================
   PAGE: Success
   ============================================================ */
.success-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 178, 109, .16);
    color: var(--green);
    font-size: 2.1rem;
    box-shadow: 0 0 0 10px rgba(35, 178, 109, .10);
}

.success-header .hero-title {
    margin-top: 24px;
}

.success-content {
    background: var(--cloud);
    padding: clamp(44px, 6vw, 64px) 0 clamp(52px, 6vw, 84px);
}

.confirmation-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
}

.order-number {
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.order-date {
    color: var(--muted);
    font-size: .9rem;
}

.plan-receipt {
    background: var(--cream);
    border: 1px solid rgba(255,122,24,.28);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 22px;
}

.plan-receipt-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.plan-receipt-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--orange);
    font-size: 1.3rem;
}

.plan-receipt-title h4 {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
    letter-spacing: -.02em;
}

.plan-receipt-price {
    color: var(--ink);
    font-weight: 900;
    font-size: 1.1rem;
}

.plan-receipt p {
    color: var(--muted);
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.detail-section {
    margin-top: 8px;
}

    .detail-section h5 {
        color: var(--ink);
        font-size: 1rem;
        font-weight: 900;
        margin-bottom: 12px;
    }

        .detail-section h5 i {
            color: var(--orange);
        }

.detail-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    font-size: .95rem;
}

    .detail-item span:first-child {
        color: var(--muted);
    }

    .detail-item span:last-child {
        color: var(--ink);
        font-weight: 700;
        text-align: right;
        word-break: break-word;
    }

    .detail-item.total {
        border-bottom: 0;
        border-top: 2px solid var(--ink);
        font-weight: 900;
        font-size: 1.05rem;
    }

        .detail-item.total span:first-child {
            color: var(--ink);
        }

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.next-steps {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-top: 26px;
}

    .next-steps h4 {
        margin: 0;
        color: var(--ink);
        font-weight: 900;
        letter-spacing: -.02em;
        font-size: 1.25rem;
    }

        .next-steps h4 i {
            color: var(--orange);
        }

.steps-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 18px;
}

    .steps-list li {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 16px;
        align-items: start;
    }

.step-number {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,122,24,.36);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--orange);
    font-weight: 900;
    background: var(--cream);
}

.step-content h6 {
    margin: 0 0 4px;
    color: var(--ink);
    font-weight: 900;
    font-size: 1rem;
}

.step-content p {
    margin: 0;
    color: var(--muted);
    font-size: .95rem;
}

/* ------------------------------------------------------------
   Shared animation hook (scripts add .animate-in)
   ------------------------------------------------------------ */
@keyframes regFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: regFadeUp .55s ease both;
}

/* ------------------------------------------------------------
   Accessibility + responsive
   ------------------------------------------------------------ */
:focus-visible {
    outline: 2px solid transparent;
    box-shadow: var(--ring) !important;
    border-color: var(--orange);
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    .animate-in {
        animation: none;
    }

    .plan-card:hover,
    .btn-brand:hover,
    .btn-select-plan:hover,
    .btn-complete-purchase:hover,
    .btn-onboarding:hover,
    .btn-print:hover {
        transform: none;
    }
}

@media (max-width: 991.98px) {
    .order-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .plan-card {
        padding: 22px;
        border-radius: 22px;
    }

    .plan-top {
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-onboarding,
    .btn-print {
        width: 100%;
    }
}
