*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
}

button,
.step-pill,
.segment,
.pass-card,
.payment-option,
.upload-btn {
    -webkit-tap-highlight-color: transparent;
}

button:disabled,
select:disabled,
input:disabled {
    cursor: not-allowed;
    opacity: .6;
}

:focus-visible {
    outline: 3px solid rgba(124, 58, 237, .35);
    outline-offset: 3px;
}

.hidden {
    display: none !important;
}

.sbec-shell {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.sbec-sidebar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    min-height: 88px;
    display: grid;
    grid-template-columns: 190px 290px minmax(0, 1fr);
    grid-template-areas: "brand info steps";
    align-items: center;
    gap: 18px;
    padding: 14px 28px;
    color: #fff;
    background: radial-gradient(circle at 15% 20%, rgba(124, 58, 237, .22), transparent 28%),
        radial-gradient(circle at 80% 15%, rgba(245, 158, 11, .12), transparent 25%),
        linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-2) 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 14px 34px rgba(7, 27, 58, .16);
}

.brand {
    grid-area: brand;
    min-width: 0;
}

.brand-title {
    font-size: clamp(28px, 2.3vw, 34px);
    line-height: .9;
    font-weight: 900;
    letter-spacing: -1px;
    white-space: nowrap;
}

.brand-title span {
    color: var(--color-orange);
}

.brand-subtitle {
    margin-top: 6px;
    color: #dbeafe;
    font-size: 9.5px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.event-info {
    grid-area: info;
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 650;
}

.steps-nav {
    grid-area: steps;
    display: grid;
    grid-template-columns: repeat(5, minmax(86px, 1fr));
    gap: 7px;
    padding: 7px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
}

.step-pill {
    width: 100%;
    min-width: 0;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 13px;
    background: transparent;
    color: #dbeafe;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.step-pill span {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.step-pill:hover {
    background: rgba(255, 255, 255, .09);
}

.sbec-main {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 24px clamp(18px, 3vw, 48px);
}

.alert-error {
    max-width: var(--content-max);
    margin: 0 auto 16px;
    padding: 14px 16px;
    border: 1px solid #fecaca;
    border-radius: 14px;
    background: #fef2f2;
    color: #991b1b;
}

.step-panel.active {
    display: block;
}

.step-panel[data-step="4"],
.step-panel[data-step="5"] {
    max-width: 1500px;
}

.panel-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.panel-heading.spread {
    justify-content: space-between;
    align-items: center;
}

.heading-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

h1 {
    margin: 0;
    font-size: clamp(21px, 2vw, 24px);
    letter-spacing: -0.03em;
}

h2 {
    margin: 0 0 16px;
    font-size: 20px;
}

h2 small {
    color: var(--color-muted);
    font-weight: 500;
}

p {
    margin: 4px 0 0;
    color: var(--color-muted);
    font-size: 14px;
}

.card,
.summary-card,
.table-card {
    border: 1px solid var(--color-line);
    border-radius: 20px;
    background: #fff;
}

.card,
.summary-card {
    padding: 20px;
}

.two-col,
.payment-grid,
.review-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
}

.payment-grid,
.review-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.selected-title {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 900;
}

.form-row.compact {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.segmented {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.segment {
    padding: 9px 13px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    cursor: pointer;
    font-weight: 800;
}

.segment.active {
    border-color: var(--color-purple);
    background: var(--color-purple);
    color: #fff;
}

label {
    display: grid;
    gap: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

input,
select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    background: #fff;
    outline: none;
}

input:focus,
select:focus {
    border-color: var(--color-purple);
    box-shadow: 0 0 0 3px rgba(109, 40, 217, .10);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.qty-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
    gap: 18px;
    align-items: end;
}

.qty-control {
    display: inline-grid;
    grid-template-columns: 44px 84px 44px;
    margin-top: 8px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 14px;
}

.qty-control button {
    background: #f8fafc;
    color: var(--color-purple);
    cursor: pointer;
    font-size: 22px;
    font-weight: 900;
}

.qty-control input {
    border: 0;
    border-right: 1px solid var(--color-line);
    border-left: 1px solid var(--color-line);
    border-radius: 0;
    text-align: center;
    font-weight: 900;
}

.qualified-card {
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    background: #ecfdf5;
    color: #166534;
}

.qualified-card span {
    font-size: 12px;
}

.qualified-card strong {
    font-size: 15px;
    text-transform: uppercase;
}

.price-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.price-strip div {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: 16px;
    background: #f8fafc;
}

.price-strip span {
    color: var(--color-muted);
    font-size: 12px;
}

.price-strip strong {
    color: var(--color-purple);
    font-size: 24px;
}

.pricing-guide-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    width: 100%;
}

.pricing-guide-pill span {
    white-space: nowrap;
}

@media (max-width: 760px) {
    .pricing-guide-pill {
        border-radius: 14px;
    }

}

.panel-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.panel-actions.split {
    justify-content: space-between;
}

.btn {
    padding: 10px 16px;
    border-radius: 11px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary,
.btn.pay {
    background: linear-gradient(135deg, var(--color-purple), var(--color-purple-2));
    color: #fff;
    box-shadow: 0 14px 25px rgba(109, 40, 217, .18);
}

.btn.secondary {
    border: 1px solid #ddd6fe;
    background: #f5f3ff;
    color: var(--color-purple);
}

.btn.ghost {
    border: 1px solid #dbe3ef;
    background: #fff;
    color: #334155;
}

.btn.pay {
    min-width: 260px;
    padding: 14px 24px;
    border-radius: 14px;
    font-size: 16px;
}

.pass-sections {
    display: block;
}

.pass-layout-compact {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, .95fr);
    gap: 18px;
    align-items: start;
}

.pass-column-side {
    display: grid;
    gap: 18px;
}

.pass-category-heading p {
    display: none;
}

.pass-row-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pass-column-side .pass-row-grid {
    grid-template-columns: 1fr;
}

.pass-card h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
}

.pass-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--color-muted);
    font-size: 11.5px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pass-card[data-pass-key="government"] .icon {
    background: #fef3c7;
    color: #b45309;
}

.pass-section-golf::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 16px;
    right: 16px;
    border-top: 2px dashed rgba(15, 23, 42, .35);
}

.participants-count {
    color: var(--color-purple);
    font-weight: 900;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.toolbar select {
    width: 180px;
    margin-left: auto;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid #ddd6fe;
    border-radius: 12px;
    background: #fff;
    color: var(--color-purple);
    font-weight: 900;
    cursor: pointer;
}

.upload-btn input {
    display: none;
}

.participant-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: start;
}

.table-card {
    min-width: 0;
    overflow: hidden;
    padding: 0;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.participant-table,
.review-table {
    width: 100%;
    border-collapse: collapse;
}

.participant-table th,
.participant-table td,
.review-table th,
.review-table td {
    padding: 12px;
    border-bottom: 1px solid var(--color-line);
    vertical-align: top;
    font-size: 13px;
    text-align: left;
}

.participant-table th,
.review-table th {
    background: #faf7ff;
    color: #4c1d95;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.participant-table tr:last-child td,
.review-table tr:last-child td {
    border-bottom: 0;
}

.checkbox-line.disabled input {
    cursor: not-allowed;
    accent-color: #94a3b8;
}

.summary-card {
    position: sticky;
    top: 112px;
    align-self: start;
    width: 100%;
    max-width: 360px;
}

.summary-card h3 {
    margin: 0 0 16px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--color-line);
    font-size: 13px;
}

.summary-line strong {
    text-align: right;
}

.summary-total strong {
    color: var(--color-purple);
    font-size: 24px;
}

.discount-line strong {
    color: var(--color-green);
}

.saving-box {
    display: grid;
    gap: 4px;
    margin-top: 16px;
    padding: 16px;
    border: 1px solid #bbf7d0;
    border-radius: 18px;
    background: #ecfdf5;
    color: #166534;
}

.tabs {
    display: flex;
    gap: 4px;
    margin: -4px 0 18px;
    border-bottom: 1px solid var(--color-line);
}

.tab {
    padding: 12px 16px;
    border-bottom: 3px solid transparent;
    border-radius: 12px 12px 0 0;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
}

.tab.active {
    border-bottom-color: var(--color-purple);
    background: #faf7ff;
    color: var(--color-purple);
}

.payment-option {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    padding: 20px 22px;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.payment-option:hover {
    transform: translateY(-1px);
    border-color: #c4b5fd;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .06);
}

.payment-option.active {
    border-color: var(--color-purple-2);
    background: #fdfcff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, .10);
}

.payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--color-purple-2);
}

.payment-option strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 900;
}

.payment-option span {
    display: block;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 650;
}

@media (min-width: 1500px) {
    .sbec-main {
        padding-right: 56px;
        padding-left: 56px;
    }

    .step-panel[data-step="3"] {
        max-width: 1760px;
    }

    .participant-layout {
        grid-template-columns: minmax(0, 1fr) 340px;
    }

    .summary-card {
        max-width: 360px;
    }

}

@media (max-width: 1280px) {
    .sbec-sidebar {
        grid-template-columns: 170px 260px minmax(0, 1fr);
        gap: 12px;
        padding: 14px 22px;
    }

    .event-info,
    .step-pill {
        font-size: 11.5px;
    }

}

@media (max-width: 1180px) {
    .two-col,
    .payment-grid,
    .review-grid,
    .participant-layout {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: static;
        max-width: none;
    }

}

@media (max-width: 1080px) {
    .sbec-sidebar {
        position: relative;
        grid-template-columns: 180px minmax(0, 1fr);
        grid-template-areas: "brand info"
            "steps steps";
        gap: 12px;
    }

    .steps-nav {
        display: flex;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .step-pill {
        flex: 0 0 auto;
        min-width: 140px;
    }

    .pass-layout-compact {
        grid-template-columns: 1fr;
    }

    .pass-column-side .pass-row-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 760px) {
    .sbec-sidebar {
        grid-template-columns: 1fr;
        grid-template-areas: "brand"
            "info"
            "steps";
        padding: 16px 12px;
        border-radius: 0 0 18px 18px;
    }

    .brand-title {
        font-size: 34px;
    }

    .brand-subtitle {
        font-size: 9px;
    }

    .event-info {
        font-size: 12px;
    }

    .sbec-main {
        padding: 16px 12px;
    }

    .step-panel {
        max-width: none;
        padding: 18px;
        border-radius: 18px;
    }

    .panel-heading.spread,
    .panel-actions.split {
        align-items: stretch;
        flex-direction: column;
    }

    .panel-actions.split .btn,
    .btn.pay {
        width: 100%;
        min-width: 0;
    }

    .form-grid,
    .qty-box,
    .price-strip,
    .pass-row-grid,
    .pass-column-side .pass-row-grid {
        grid-template-columns: 1fr;
    }

    .pricing-guide {
        padding: 12px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .pricing-guide-list {
        grid-template-columns: 1fr;
        width: 100%;
        overflow-x: auto;
    }

    .pass-card {
        min-height: auto;
    }

    .toolbar {
        align-items: stretch;
    }

    .toolbar .btn,
    .toolbar .upload-btn,
    .toolbar select {
        width: 100%;
        margin-left: 0;
    }

    .participant-table.no-addons-table,
    .review-table {
        min-width: 720px;
    }

    .payment-option {
        align-items: flex-start;
        padding: 16px;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}

.pass-category-section::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: var(--section-accent);
    display: none !important;
}

@media (min-width: 1081px) {
    .pass-layout-compact {
        align-items: stretch !important;
    }

    .pass-column-main,
    .pass-column-side {
        height: 100%;
    }

    .pass-column-main .pass-category-section {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .pass-column-main .pass-row-grid {
        flex: 1;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: repeat(3, 1fr);
        align-content: stretch;
    }

    .pass-column-main .pass-card {
        height: 100%;
        min-height: 0 !important;
    }

}

body {
    margin: 0;
    min-height: 100dvh;
    overflow-x: hidden;
    background: linear-gradient(rgba(14, 165, 233, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, .035) 1px, transparent 1px),
        radial-gradient(circle at 15% 10%, rgba(124, 58, 237, .12), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(34, 211, 238, .14), transparent 30%),
        #f4f7fb !important;
    color: var(--color-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-size: 32px 32px,
        32px 32px,
        auto,
        auto;
}

.step-panel {
    display: none;
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(14, 165, 233, .16) !important;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.94)) !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10),
        0 0 0 1px rgba(255,255,255,.70) inset !important;
}

.step-no {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tech-purple), var(--tech-blue)) !important;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 0 0 6px rgba(14, 165, 233, .10);
}

.pass-category-section {
    --section-accent: var(--color-purple);
    --section-dark: #4c1d95;
    --section-bg-1: #fff;
    --section-bg-2: #f8fafc;
    --section-glow: rgba(124, 58, 237, .12);
    --section-line: rgba(15, 23, 42, .08);
    --section-card-line: rgba(15, 23, 42, .10);
    --section-ring: rgba(124, 58, 237, .12);
    --section-shadow: rgba(15, 23, 42, .08);
    --section-icon-bg: #ede9fe;
    --section-chip-bg: #f5f3ff;
    position: relative;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(14, 165, 233, .18) !important;
    border-radius: 20px;
    background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, .18), transparent 34%),
        radial-gradient(circle at 0% 100%, rgba(124, 58, 237, .12), transparent 38%),
        rgba(255, 255, 255, .72) !important;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .08),
        inset 0 1px 0 rgba(255,255,255,.70) !important;
    border-left: 1px solid rgba(15, 23, 42, .08) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pass-section-conference,
.pass-section-masterclass,
.pass-section-golf {
    --section-bg-1: rgba(255,255,255,.72);
    --section-bg-2: rgba(248,250,252,.80);
    --section-line: rgba(14, 165, 233, .18);
    --section-card-line: rgba(14, 165, 233, .15);
    --section-ring: rgba(34, 211, 238, .22);
    --section-shadow: rgba(14, 165, 233, .16);
}

.pass-section-conference {
    --section-accent: #7c3aed;
    --section-dark: #4c1d95;
    --section-bg-1: #fff;
    --section-bg-2: #f5f3ff;
    --section-glow: rgba(109, 40, 217, .16);
    --section-line: rgba(109, 40, 217, .18);
    --section-card-line: rgba(109, 40, 217, .16);
    --section-ring: rgba(109, 40, 217, .13);
    --section-shadow: rgba(109, 40, 217, .13);
    --section-icon-bg: rgba(124, 58, 237, .12);
    --section-chip-bg: rgba(124, 58, 237, .08);
}

.pass-section-masterclass {
    --section-accent: #0891b2;
    --section-dark: #155e75;
    --section-bg-1: #fff;
    --section-bg-2: #ecfdf5;
    --section-glow: rgba(15, 118, 110, .15);
    --section-line: rgba(15, 118, 110, .18);
    --section-card-line: rgba(15, 118, 110, .16);
    --section-ring: rgba(15, 118, 110, .13);
    --section-shadow: rgba(15, 118, 110, .13);
    --section-icon-bg: rgba(34, 211, 238, .14);
    --section-chip-bg: rgba(34, 211, 238, .10);
}

.pass-section-golf {
    --section-accent: #f59e0b;
    --section-dark: #92400e;
    --section-bg-1: #fff;
    --section-bg-2: #fffbeb;
    --section-glow: rgba(180, 83, 9, .16);
    --section-line: rgba(180, 83, 9, .20);
    --section-card-line: rgba(180, 83, 9, .16);
    --section-ring: rgba(180, 83, 9, .13);
    --section-shadow: rgba(180, 83, 9, .13);
    --section-icon-bg: rgba(245, 158, 11, .16);
    --section-chip-bg: rgba(245, 158, 11, .10);
}

.pass-category-heading {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(14, 165, 233, .18) !important;
}

.pass-category-heading h2 {
    margin: 0;
    color: var(--section-dark);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.03em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pass-category-heading h2::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 9px;
    border-radius: 999px;
    background: var(--section-accent);
    box-shadow: 0 0 0 5px rgba(34, 211, 238, .12),
        0 0 18px rgba(34, 211, 238, .55) !important;
    vertical-align: middle;
}

.pass-card {
    position: relative;
    width: 100%;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 14px;
    border: 1px solid rgba(14, 165, 233, .14) !important;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(248,250,252,.82)) !important;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .045),
        inset 0 1px 0 rgba(255,255,255,.75) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pass-card::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34,211,238,.25), transparent 60%);
    opacity: .8;
    pointer-events: none;
}

.pass-card:hover {
    transform: translateY(-3px) !important;
    border-color: var(--section-accent) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .10),
        0 0 0 4px var(--section-ring),
        0 0 30px var(--section-shadow) !important;
}

.pass-card.active {
    border-color: var(--section-accent) !important;
    box-shadow: 0 0 0 4px var(--section-ring),
        0 0 34px var(--section-shadow),
        inset 0 1px 0 rgba(255,255,255,.85) !important;
}

.pass-card .icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,.92), var(--section-icon-bg)) !important;
    color: var(--section-accent);
    font-size: 14px;
    font-weight: 900;
    border: 1px solid rgba(14, 165, 233, .12);
    box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.pass-card::after {
    content: "Click to proceed";
    width: fit-content;
    margin-top: auto;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.76) !important;
    color: var(--section-accent) !important;
    font-size: 10px;
    font-weight: 900;
    border: 1px solid rgba(14, 165, 233, .14);
    box-shadow: 0 6px 14px rgba(15, 23, 42, .04);
}

.pass-card:hover::after,
.pass-card.active::after {
    background: linear-gradient(135deg, var(--section-accent), var(--tech-blue)) !important;
    color: #fff !important;
    border-color: transparent;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tech-purple), var(--tech-blue)) !important;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(124, 58, 237, .25);
}

.pass-card[data-pass-key="government"] {
    border-color: rgba(245, 158, 11, .55) !important;
    background: radial-gradient(circle at 100% 0%, rgba(245,158,11,.18), transparent 34%),
        linear-gradient(145deg, #fffdf5, #fff7ed) !important;
    box-shadow: 0 0 0 3px rgba(234, 179, 8, .10);
}

.pricing-guide {
    width: 100%;
    margin: 0 0 18px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(240,249,255,.88)) !important;
    border: 1px solid rgba(14, 165, 233, .20) !important;
    box-shadow: 0 10px 24px rgba(14, 165, 233, .08),
        inset 0 1px 0 rgba(255,255,255,.78) !important;
    overflow: visible;
}

.pricing-guide-title {
    color: #0f3f66 !important;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: normal;
}

.pricing-guide-pill {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.75) !important;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    line-height: 1.35;
    border-color: rgba(14, 165, 233, .18) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.80);
}

.pricing-guide-pill strong {
    color: #0369a1 !important;
    font-weight: 900;
}

.qty-control,
.qualified-card,
.price-strip div,
.card,
.summary-card {
    border-color: rgba(14, 165, 233, .14) !important;
}

.price-strip strong,
.summary-total strong {
    color: #2563eb !important;
}

.btn.primary,
.btn.pay,
.segment.active {
    background: linear-gradient(135deg, #7c3aed, #2563eb, #06b6d4) !important;
    box-shadow: 0 14px 28px rgba(37, 99, 235, .20) !important;
}

.step-pill.active {
    background: linear-gradient(135deg, #7c3aed, #2563eb, #06b6d4) !important;
    color: #fff;
    box-shadow: 0 10px 24px rgba(14, 165, 233, .26) !important;
}

.table-scroll-top-inner {
    height: 1px;
}

.participant-table-frame::-webkit-scrollbar,
.table-scroll-top::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}

.participant-table-frame::-webkit-scrollbar-track,
.table-scroll-top::-webkit-scrollbar-track {
    background: #eef2f7;
    border-radius: 999px;
}

.participant-table-frame::-webkit-scrollbar-thumb,
.table-scroll-top::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.participant-table-frame::-webkit-scrollbar-thumb:hover,
.table-scroll-top::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (min-width: 1081px) {
    .participant-table thead th:nth-child(1) {
        z-index: 8;
        background: #faf7ff;
    }

    .participant-table thead th:nth-child(2) {
        z-index: 8;
        background: #faf7ff;
    }

}

:root {
    --color-navy: #071b3a;
    --color-navy-2: #0d244a;
    --color-purple: #6d28d9;
    --color-purple-2: #7c3aed;
    --color-orange: #f59e0b;
    --color-green: #16a34a;
    --color-danger: #dc2626;
    --color-text: #0f172a;
    --color-muted: #64748b;
    --color-line: #e5e7eb;
    --color-soft: #f8fafc;
    --shadow-soft: 0 20px 45px rgba(15, 23, 42, .08);
    --shadow-card: 0 14px 34px rgba(15, 23, 42, .05);
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --content-max: 1600px;
    --tech-navy: #061225;
    --tech-blue: #0ea5e9;
    --tech-cyan: #22d3ee;
    --tech-purple: #7c3aed;
    --tech-glow-blue: rgba(34, 211, 238, .22);
    --tech-glow-purple: rgba(124, 58, 237, .20);
    --sbec-header-h: 82px;
    --sbec-page-gap: 16px;
    --sbec-panel-pad: clamp(14px, 1.25vw, 22px);
}

@media (min-width: 1024px) {
    html,
    body {
        width: 100%;
        height: 100dvh;
        overflow: hidden !important;
    }

    .sbec-shell {
        height: 100dvh !important;
        min-height: 100dvh !important;
        overflow: hidden !important;
    }

    .sbec-sidebar {
        min-height: var(--sbec-header-h) !important;
        height: var(--sbec-header-h) !important;
        grid-template-columns: clamp(150px, 12vw, 190px) clamp(220px, 18vw, 290px) minmax(0, 1fr) !important;
        gap: clamp(10px, 1vw, 18px) !important;
        padding: 10px clamp(16px, 2vw, 28px) !important;
        border-radius: 0 0 18px 18px !important;
    }

    .brand-title {
        font-size: clamp(25px, 2vw, 34px) !important;
    }

    .brand-subtitle {
        font-size: clamp(8px, .62vw, 9.5px) !important;
        letter-spacing: .9px !important;
    }

    .event-info {
        padding: 8px 12px !important;
        font-size: clamp(10.5px, .78vw, 12px) !important;
    }

    .steps-nav {
        gap: 6px !important;
        padding: 6px !important;
        grid-template-columns: repeat(5, minmax(74px, 1fr)) !important;
    }

    .step-pill {
        height: clamp(32px, 2.5vw, 38px) !important;
        gap: 6px !important;
        padding: 6px 8px !important;
        font-size: clamp(10px, .76vw, 12px) !important;
    }

    .step-pill span {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        font-size: 10px !important;
    }

    .sbec-main {
        height: calc(100dvh - var(--sbec-header-h)) !important;
        padding: var(--sbec-page-gap) clamp(14px, 2vw, 32px) !important;
        overflow: hidden !important;
    }

    .step-panel {
        width: 100% !important;
        max-width: min(1760px, 100%) !important;
        height: 100% !important;
        max-height: calc(100dvh - var(--sbec-header-h) - (var(--sbec-page-gap) * 2)) !important;
        margin: 0 auto !important;
        padding: var(--sbec-panel-pad) !important;
        border-radius: 20px !important;
        overflow: auto !important;
    }

    .panel-heading {
        margin-bottom: clamp(10px, 1vw, 16px) !important;
        gap: 12px !important;
    }

    .step-no {
        width: clamp(32px, 2.4vw, 36px) !important;
        height: clamp(32px, 2.4vw, 36px) !important;
        font-size: 14px !important;
    }

    h1 {
        font-size: clamp(18px, 1.45vw, 24px) !important;
    }

    h2,
    .selected-title {
        font-size: clamp(18px, 1.45vw, 22px) !important;
    }

    p,
    label {
        font-size: clamp(12px, .85vw, 14px) !important;
    }

    input,
    select {
        padding: clamp(8px, .75vw, 11px) 12px !important;
    }

    .btn {
        padding: clamp(8px, .8vw, 10px) clamp(12px, 1.1vw, 16px) !important;
        font-size: clamp(12px, .86vw, 14px) !important;
    }

    .panel-actions {
        margin-top: clamp(10px, 1vw, 18px) !important;
    }

    .step-panel[data-step="1"] {
        overflow: hidden !important;
    }

    .step-panel[data-step="1"] .pass-sections,
    .step-panel[data-step="1"] .pass-layout-compact {
        min-height: 0;
        height: 100%;
    }

    .pass-layout-compact {
        grid-template-columns: minmax(0, 2.1fr) minmax(260px, .9fr) !important;
        gap: clamp(10px, 1vw, 18px) !important;
        align-items: stretch !important;
    }

    .pass-column-main,
    .pass-column-side {
        min-height: 0;
        height: 100%;
    }

    .pass-column-main .pass-category-section,
    .pass-column-side .pass-category-section {
        min-height: 0;
    }

    .pass-column-main .pass-category-section {
        height: 100%;
        display: flex !important;
        flex-direction: column;
    }

    .pass-column-side {
        display: grid !important;
        grid-template-rows: minmax(0, 1fr) auto;
        gap: clamp(10px, 1vw, 18px) !important;
    }

    .pass-category-section {
        padding: clamp(11px, .9vw, 16px) !important;
        border-radius: 18px !important;
    }

    .pass-category-heading {
        margin-bottom: 10px !important;
        padding-bottom: 9px !important;
    }

    .pass-category-heading h2 {
        font-size: clamp(15px, 1.1vw, 18px) !important;
    }

    .pass-row-grid {
        gap: clamp(8px, .8vw, 12px) !important;
    }

    .pass-column-main .pass-row-grid {
        flex: 1;
        min-height: 0;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
    }

    .pass-card {
        min-height: 0 !important;
        height: 100%;
        padding: clamp(10px, .8vw, 14px) !important;
        gap: 5px !important;
        border-radius: 15px !important;
    }

    .pass-card .icon {
        width: clamp(24px, 1.8vw, 30px) !important;
        height: clamp(24px, 1.8vw, 30px) !important;
        font-size: 12px !important;
    }

    .pass-card h3 {
        font-size: clamp(12.5px, .92vw, 15px) !important;
        line-height: 1.18 !important;
    }

    .pass-card p {
        font-size: clamp(10px, .72vw, 11.5px) !important;
        line-height: 1.22 !important;
        -webkit-line-clamp: 2;
    }

    .pass-card::after {
        padding: 4px 8px !important;
        font-size: 9px !important;
    }

    .badge {
        top: 8px !important;
        right: 8px !important;
        padding: 4px 8px !important;
        font-size: 9px !important;
    }

    .step-panel[data-step="2"] {
        display: none !important;
    }

    .step-panel[data-step="2"].active {
        display: grid !important;
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 12px;
        overflow: hidden !important;
    }

    .step-panel[data-step="2"] .two-col {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: clamp(12px, 1.2vw, 22px) !important;
    }

    .step-panel[data-step="2"] .card {
        min-height: 0;
        padding: clamp(14px, 1.15vw, 20px) !important;
        overflow: auto;
    }

    .selected-title {
        margin-bottom: 12px !important;
    }

    .form-row.compact {
        margin-bottom: 12px !important;
        gap: 8px !important;
    }

    .segment {
        padding: clamp(7px, .7vw, 9px) clamp(10px, .95vw, 13px) !important;
        font-size: clamp(12px, .9vw, 14px) !important;
    }

    .pricing-guide {
        margin-bottom: 12px !important;
        padding: clamp(10px, .9vw, 14px) !important;
        gap: 9px !important;
    }

    .pricing-guide-title {
        font-size: 11px !important;
    }

    .pricing-guide-list {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 8px !important;
        overflow: visible !important;
    }

    .pricing-guide-pill {
        padding: 7px 8px !important;
        font-size: clamp(10.5px, .78vw, 12px) !important;
        border-radius: 999px !important;
    }

    .qty-box {
        grid-template-columns: minmax(0, .9fr) minmax(220px, 1fr) !important;
        gap: 12px !important;
    }

    .qty-control {
        grid-template-columns: 40px 76px 40px !important;
        margin-top: 6px !important;
    }

    .qualified-card,
    .price-strip div {
        padding: clamp(12px, .95vw, 16px) !important;
    }

    .qualified-card strong {
        font-size: clamp(13px, .95vw, 15px) !important;
    }

    .price-strip {
        margin-top: 12px !important;
        gap: 10px !important;
    }

    .price-strip strong {
        font-size: clamp(21px, 1.8vw, 27px) !important;
    }

    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: clamp(9px, .85vw, 14px) !important;
    }

    .step-panel[data-step="3"] {
        display: none !important;
    }

    .toolbar {
        margin-bottom: 0 !important;
        gap: 8px !important;
    }

    .summary-card {
        position: static !important;
        max-height: 100%;
        overflow: auto;
    }

    .participant-table th,
    .participant-table td {
        padding: 10px !important;
        font-size: 12px !important;
    }

    .compact-input {
        padding: 8px 9px !important;
        font-size: 12px !important;
    }

    .name-cell {
        gap: 7px !important;
        min-width: 270px !important;
    }

    .student-card-upload {
        padding: 8px !important;
        gap: 5px !important;
    }

    .step-panel[data-step="4"],
    .step-panel[data-step="5"] {
        display: none !important;
    }

    .step-panel[data-step="4"].active,
    .step-panel[data-step="5"].active {
        display: grid !important;
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 12px;
        overflow: hidden !important;
    }

    .review-grid,
    .payment-grid {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr) clamp(290px, 22vw, 370px) !important;
        gap: 14px !important;
    }

    .review-grid > .card,
    .payment-grid > .card,
    .review-grid > .summary-card,
    .payment-grid > .summary-card {
        min-height: 0;
        max-height: 100%;
        overflow: auto;
    }

    .payment-option {
        padding: clamp(14px, 1vw, 20px) !important;
        margin-bottom: 10px !important;
    }

}

@media (min-width: 1024px) and (max-width: 1366px),
       (min-width: 1024px) and (max-height: 760px) {
    :root {
        --sbec-header-h: 72px;
        --sbec-page-gap: 10px;
        --sbec-panel-pad: 14px;
    }

    .sbec-sidebar {
        grid-template-columns: 145px 220px minmax(0, 1fr) !important;
        padding: 8px 16px !important;
    }

    .brand-title {
        font-size: 25px !important;
    }

    .brand-subtitle {
        font-size: 8px !important;
    }

    .event-info {
        padding: 7px 10px !important;
        font-size: 10.5px !important;
    }

    .step-pill {
        height: 32px !important;
        font-size: 10px !important;
    }

    .pass-layout-compact {
        grid-template-columns: minmax(0, 2.15fr) minmax(245px, .85fr) !important;
    }

    .pass-card p {
        -webkit-line-clamp: 1 !important;
    }

    .pass-card .icon {
        width: 24px !important;
        height: 24px !important;
    }

    .pricing-guide-list {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .price-strip strong {
        font-size: 22px !important;
    }

}

@media (min-width: 1600px) {
    .step-panel {
        max-width: 1760px !important;
    }

    .sbec-main {
        padding-left: 44px !important;
        padding-right: 44px !important;
    }

    .pass-layout-compact {
        grid-template-columns: minmax(0, 2.15fr) minmax(350px, .9fr) !important;
    }

}

@media (max-width: 1023px) {
    html,
    body,
    .sbec-shell,
    .sbec-main,
    .step-panel {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .sbec-sidebar {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .sbec-main {
        padding: 16px 12px !important;
    }

    .step-panel {
        padding: 16px !important;
        border-radius: 18px !important;
    }

    .two-col,
    .review-grid,
    .payment-grid,
    .participant-layout,
    .pass-layout-compact {
        grid-template-columns: 1fr !important;
    }

    .form-grid,
    .qty-box,
    .price-strip,
    .pricing-guide-list,
    .pass-row-grid,
    .pass-column-side .pass-row-grid {
        grid-template-columns: 1fr !important;
    }

    .pricing-guide-list {
        overflow: visible !important;
    }

    .summary-card {
        position: static !important;
        max-width: none !important;
    }

    .panel-actions.split {
        flex-direction: column;
    }

    .panel-actions.split .btn,
    .btn.pay {
        width: 100% !important;
        min-width: 0 !important;
    }

    .table-scroll-top {
        display: block;
    }

}

@media (max-width: 480px) {
    .panel-heading {
        gap: 10px !important;
    }

    .step-no {
        width: 32px !important;
        height: 32px !important;
    }

    h1 {
        font-size: 19px !important;
    }

    .selected-title {
        font-size: 20px !important;
    }

    .segment {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }

    .qty-control {
        grid-template-columns: 42px 76px 42px !important;
    }

    .btn {
        width: 100%;
    }

}

.step-panel[data-step="3"] {
    max-width: 1720px;
    --ep-border: #e5eaf3;
    --ep-head-bg: #f8f5ff;
    --ep-head-text: #4c1d95;
    --ep-row-alt: #fbfdff;
    --ep-muted: #64748b;
    --ep-blue: #2563eb;
    --ep-green-bg: #dcfce7;
    --ep-green-text: #166534;
}

.participant-table-card {
    overflow: hidden !important;
    border-radius: 22px !important;
    border: 1px solid rgba(15, 23, 42, .08) !important;
    background: #ffffff !important;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .06) !important;
}

.eventpass-scroll-hint {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-bottom: 1px solid var(--ep-border);
    background: linear-gradient(90deg, #f8fafc, #ffffff);
    color: #475569;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
}

.eventpass-scroll-hint.is-visible {
    display: flex;
}

.scroll-hint-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eef2ff;
    color: var(--ep-blue);
    font-size: 14px;
    font-weight: 900;
}

.table-scroll-top,
.table-scroll-bottom {
    display: none;
    width: 100%;
    height: 13px;
    overflow-x: auto;
    overflow-y: hidden;
    background: #f8fafc;
    scrollbar-width: thin;
}

.table-scroll-top.is-visible,
.table-scroll-bottom.is-visible {
    display: block;
}

.table-scroll-bottom {
    border-top: 1px solid var(--ep-border);
}

.table-scroll-top-inner,
.table-scroll-bottom-inner {
    height: 1px;
}

.participant-table-frame::-webkit-scrollbar,
.table-scroll-top::-webkit-scrollbar,
.table-scroll-bottom::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.participant-table-frame::-webkit-scrollbar-track,
.table-scroll-top::-webkit-scrollbar-track,
.table-scroll-bottom::-webkit-scrollbar-track {
    background: #eef2f7;
    border-radius: 999px;
}

.participant-table-frame::-webkit-scrollbar-thumb,
.table-scroll-top::-webkit-scrollbar-thumb,
.table-scroll-bottom::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
    border: 2px solid #eef2f7;
}

.participant-table-frame::-webkit-scrollbar-thumb:hover,
.table-scroll-top::-webkit-scrollbar-thumb:hover,
.table-scroll-bottom::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.participant-table.no-addons-table {
    min-width: 980px !important;
}

.participant-table th:nth-child(1),
.participant-table td:nth-child(1) {
    width: 64px;
    min-width: 64px;
    max-width: 64px;
    text-align: center;
}

.participant-table th:nth-child(2),
.participant-table td:nth-child(2) {
    width: 430px;
    min-width: 430px;
}

.participant-table th:nth-child(3),
.participant-table td:nth-child(3) {
    width: 240px;
    min-width: 240px;
}

.participant-table th:nth-child(4),
.participant-table td:nth-child(4) {
    width: 220px;
    min-width: 220px;
}

.participant-table th:nth-child(n/**/+5),
.participant-table td:nth-child(n/**/+5) {
    width: 170px;
    min-width: 170px;
}

.participant-table th:last-child,
.participant-table td:last-child {
    width: 135px;
    min-width: 135px;
}

.participant-table thead th {
    position: sticky;
    top: 0;
    z-index: 5;
    background: var(--ep-head-bg) !important;
    padding: 13px 14px !important;
    border-bottom: 1px solid var(--ep-border) !important;
    color: var(--ep-head-text) !important;
    font-size: 11.5px !important;
    font-weight: 900 !important;
    line-height: 1.18 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase;
    vertical-align: middle !important;
    white-space: normal;
}

.participant-table thead th span {
    display: block;
    margin-top: 4px;
    color: var(--ep-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
}

.participant-table tbody td {
    padding: 14px !important;
    border-bottom: 1px solid var(--ep-border) !important;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px !important;
    line-height: 1.35;
    vertical-align: top !important;
}

.participant-table tbody tr:nth-child(even) td {
    background: var(--ep-row-alt);
}

.participant-table tbody tr:hover td {
    background: #f8fbff;
}

@media (min-width: 1081px) {
    .participant-table th:nth-child(1),
    .participant-table td:nth-child(1) {
        position: sticky;
        left: 0;
        z-index: 7;
        background: #ffffff;
    }

    .participant-table th:nth-child(2),
    .participant-table td:nth-child(2) {
        position: sticky;
        left: 64px;
        z-index: 7;
        background: #ffffff;
        box-shadow: 10px 0 18px rgba(15, 23, 42, .06);
    }

    .participant-table thead th:nth-child(1),
    .participant-table thead th:nth-child(2) {
        z-index: 10;
        background: var(--ep-head-bg) !important;
    }

    .participant-table tbody tr:nth-child(odd) td:nth-child(1),
    .participant-table tbody tr:nth-child(odd) td:nth-child(2) {
        background: #ffffff;
    }

    .participant-table tbody tr:nth-child(even) td:nth-child(1),
    .participant-table tbody tr:nth-child(even) td:nth-child(2) {
        background: var(--ep-row-alt);
    }

    .participant-table tbody tr:hover td:nth-child(1),
    .participant-table tbody tr:hover td:nth-child(2) {
        background: #f8fbff;
    }

}

.name-cell {
    display: grid !important;
    gap: 8px !important;
    min-width: 430px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.name-cell input:nth-of-type(5),
.name-cell .student-card-upload {
    grid-column: 1 / -1;
}

.compact-input {
    padding: 8px 11px !important;
    font-size: 12.5px !important;
    height: 38px !important;
    min-height: 38px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: #0f172a;
    font-weight: 600;
    box-shadow: none !important;
}

.compact-input::placeholder {
    color: #7b8794;
    font-weight: 500;
}

.compact-input:focus {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .10) !important;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px !important;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 12.5px !important;
    font-weight: 850;
    min-height: 30px;
    justify-content: center;
    max-width: 100%;
    border: 1px solid #e2e8f0;
    color: #334155;
    line-height: 1.25;
    text-align: left;
    white-space: normal;
}

.pill.ok {
    background: var(--ep-green-bg) !important;
    color: var(--ep-green-text) !important;
    border-color: #bbf7d0;
}

.participant-table td small {
    display: block;
    margin-top: 7px;
    color: var(--ep-muted);
    font-size: 12px;
    font-weight: 650;
}

.addon-cell {
    min-width: 125px;
    text-align: left !important;
}

.checkbox-line {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start !important;
    gap: 8px !important;
    color: #334155;
    font-weight: 850 !important;
    width: fit-content;
    max-width: 100%;
    padding: 8px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    font-size: 13px;
    cursor: pointer;
}

.checkbox-line input {
    width: 18px !important;
    height: 18px !important;
    accent-color: #7c3aed;
    flex: 0 0 auto;
    margin: 0;
}

.checkbox-line:hover {
    border-color: #c4b5fd;
    background: #faf7ff;
}

.checkbox-line.disabled {
    cursor: not-allowed;
    opacity: .45;
}

.addon-cell.addon-disabled {
    background: #f8fafc !important;
}

.participant-table td:last-child strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 12px;
    background: #eff6ff;
    color: var(--ep-blue);
    font-size: 14px;
    font-weight: 950;
}

.student-card-upload {
    display: grid;
    gap: 6px;
    padding: 10px !important;
    border: 1px dashed rgba(37, 99, 235, .35) !important;
    border-radius: 14px !important;
    background: #f8fbff !important;
}

.student-card-upload span {
    color: #0f3f66;
    font-size: 12px;
    font-weight: 900;
}

.student-card-upload input[type="file"] {
    padding: 8px !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    font-size: 12px !important;
    height: auto !important;
}

.student-card-upload small {
    color: #64748b;
    font-size: 11px;
    line-height: 1.35;
}

@media (min-width: 1024px) {
    .participant-table-card,
    .participant-table-frame {
        min-height: 0 !important;
        height: 100%;
    }

}

@media (max-width: 1080px) {
    .participant-table {
        min-width: 1280px !important;
    }

    .name-cell {
        grid-template-columns: 1fr !important;
        min-width: 320px !important;
    }

    .participant-table th:nth-child(2),
    .participant-table td:nth-child(2) {
        width: 320px;
        min-width: 320px;
    }

    .participant-table-frame {
        max-height: 520px !important;
    }

}

@media (max-width: 760px) {
    .eventpass-scroll-hint {
        font-size: 11.5px;
        padding: 8px 10px;
    }

    .participant-table {
        min-width: 1180px !important;
    }

    .participant-table-frame {
        max-height: 460px !important;
    }

    .participant-table thead th,
    .participant-table tbody td {
        padding: 11px !important;
    }

}

@media (min-width: 1024px) {
    .step-panel[data-step="3"].active {
        display: grid !important;
        grid-template-rows: auto auto minmax(0, 1fr) auto !important;
        gap: 12px !important;
        overflow: hidden !important;
        min-height: 0 !important;
    }

    .participant-layout {
        min-height: 0 !important;
        grid-template-columns: minmax(0, 1fr) clamp(300px, 20vw, 360px) !important;
        gap: 16px !important;
        height: 100% !important;
    }

    .participant-table-card {
        display: grid !important;
        grid-template-rows: auto auto minmax(0, 1fr) !important;
        min-height: 0 !important;
        overflow: hidden !important;
        height: 100% !important;
    }

    .table-scroll-bottom {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        border: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .table-scroll-bottom-inner {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .participant-table-frame {
        max-height: none !important;
        overflow: auto !important;
        min-height: 0 !important;
        height: 100% !important;
        padding-bottom: 0 !important;
        scroll-padding-bottom: 12px !important;
        scrollbar-gutter: auto !important;
        margin-bottom: 0 !important;
    }

    .participant-table {
        margin-bottom: 0 !important;
    }

    .participant-table tbody {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .participant-table tbody tr:last-child td {
        padding-bottom: 16px !important;
        border-bottom: 0 !important;
    }

    .participant-table tbody tr:last-child .name-cell {
        margin-bottom: 0 !important;
    }

    .participant-table tbody tr:last-child input,
    .participant-table tbody tr:last-child select {
        margin-bottom: 0 !important;
    }

}

@media (max-width: 1023px) {
    .table-scroll-bottom {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
        border: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .table-scroll-bottom-inner {
        display: none !important;
    }

    .participant-table-frame {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .participant-table {
        margin-bottom: 0 !important;
    }

    .participant-table tbody tr:last-child td {
        padding-bottom: 16px !important;
    }

}

.table-scroll-bottom,
.table-scroll-bottom-inner {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.table-scroll-top {
    width: 100%;
    height: 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    border-bottom: 1px solid #e5eaf3 !important;
    background: #f8fafc !important;
    display: block !important;
}

.participant-table-frame {
    width: 100%;
    max-height: min(62vh, 620px) !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.participant-table-frame::-webkit-scrollbar:horizontal {
    height: 0 !important;
}

.participant-table-frame::-webkit-scrollbar:vertical {
    width: 10px !important;
}

.participant-table-frame::-webkit-scrollbar-track {
    background: #eef2f7;
    border-radius: 999px;
}

.participant-table-frame::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
    border: 2px solid #eef2f7;
}

.participant-table-frame::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.participant-table {
    min-width: 1540px !important;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin-bottom: 0 !important;
}

.participant-table tbody tr:last-child td {
    padding-bottom: 16px !important;
    border-bottom: 0 !important;
}

.compact-input.field-error {
    border-color: #dc2626 !important;
    background: #fff7f7 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.compact-input.field-success {
    border-color: #16a34a !important;
    background: #f0fdf4 !important;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1) !important;
}

input.field-error,
select.field-error,
textarea.field-error,
.compact-input.field-error {
    border-color: #dc2626 !important;
    background: #fff7f7 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

input.field-success,
select.field-success,
textarea.field-success,
.compact-input.field-success {
    border-color: #16a34a !important;
    background: #f0fdf4 !important;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1) !important;
}

.field-error-message,
.field-success-message {
    display: block;
    margin: -4px 0 8px;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
}

.field-error-message {
    color: #b91c1c;
}

.field-success-message {
    color: #15803d;
}

.field-with-info {
    position: relative;
}

.field-label-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.info-icon {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    cursor: help;
    user-select: none;
}

.info-icon:hover,
.info-icon:focus {
    background: #0284c7;
    color: #ffffff;
    outline: none;
}

.info-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    z-index: 30;
    width: min(320px, 80vw);
    padding: 10px 12px;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .22);
    pointer-events: none;
}

.info-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    border-width: 6px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
    transform: translateX(-50%);
}

.info-icon:hover .info-tooltip,
.info-icon:focus .info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.government-payment-notice {
    margin-bottom: 16px;
    padding: 16px 18px;
    border: 1px solid #bae6fd;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    color: #0f172a;
}

.government-payment-notice strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 900;
    color: #075985;
}

.government-payment-notice span {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    color: #475569;
}

.government-payment-notice.hidden {
    display: none;
}

.payment-option.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(0.25);
}

.payment-option.disabled input {
    cursor: not-allowed;
}

.pass-card.special-association-card,
.pass-card[data-pass-key="special_association_physical"],
.pass-card[data-pass-key="special_association_virtual"] {
    border-color: rgba(20, 184, 166, .55) !important;
    background: radial-gradient(circle at 100% 0%, rgba(20, 184, 166, .22), transparent 36%),
        radial-gradient(circle at 0% 100%, rgba(16, 185, 129, .12), transparent 36%),
        linear-gradient(145deg, #f0fdfa, #ecfdf5) !important;
    box-shadow: 0 14px 34px rgba(20, 184, 166, .12),
        inset 0 1px 0 rgba(255,255,255,.82) !important;
}

.pass-card.special-association-card::before,
.pass-card[data-pass-key="special_association_physical"]::before,
.pass-card[data-pass-key="special_association_virtual"]::before {
    background: radial-gradient(circle, rgba(20, 184, 166, .35), transparent 62%) !important;
}

.pass-card.special-association-card .icon,
.pass-card[data-pass-key="special_association_physical"] .icon,
.pass-card[data-pass-key="special_association_virtual"] .icon {
    background: linear-gradient(135deg, #ffffff, #ccfbf1) !important;
    border-color: rgba(20, 184, 166, .28) !important;
    color: #0f766e !important;
}

.pass-card.special-association-card h3,
.pass-card[data-pass-key="special_association_physical"] h3,
.pass-card[data-pass-key="special_association_virtual"] h3 {
    color: #115e59 !important;
}

.pass-card.special-association-card p,
.pass-card[data-pass-key="special_association_physical"] p,
.pass-card[data-pass-key="special_association_virtual"] p {
    color: #49766f !important;
}

.pass-card.special-association-card::after,
.pass-card[data-pass-key="special_association_physical"]::after,
.pass-card[data-pass-key="special_association_virtual"]::after {
    background: rgba(240, 253, 250, .92) !important;
    border-color: rgba(20, 184, 166, .24) !important;
    color: #0f766e !important;
}

.pass-card.special-association-card:hover,
.pass-card[data-pass-key="special_association_physical"]:hover,
.pass-card[data-pass-key="special_association_virtual"]:hover {
    border-color: #14b8a6 !important;
    box-shadow: 0 18px 42px rgba(15, 118, 110, .16),
        0 0 0 4px rgba(20, 184, 166, .16),
        0 0 34px rgba(20, 184, 166, .20) !important;
}

.pass-card.special-association-card.active,
.pass-card[data-pass-key="special_association_physical"].active,
.pass-card[data-pass-key="special_association_virtual"].active {
    border-color: #0d9488 !important;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, .20),
        0 0 38px rgba(20, 184, 166, .24),
        inset 0 1px 0 rgba(255,255,255,.88) !important;
}

.pass-card.special-association-card:hover::after,
.pass-card.special-association-card.active::after,
.pass-card[data-pass-key="special_association_physical"]:hover::after,
.pass-card[data-pass-key="special_association_physical"].active::after,
.pass-card[data-pass-key="special_association_virtual"]:hover::after,
.pass-card[data-pass-key="special_association_virtual"].active::after {
    background: linear-gradient(135deg, #0d9488, #14b8a6, #06b6d4) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

.special-rate-badge {
    background: linear-gradient(135deg, #0d9488, #14b8a6, #06b6d4) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(20, 184, 166, .28) !important;
}

.pass-card h3 em {
    font-style: italic;
    font-weight: 800;
    color: inherit;
}

.pass-card h3 em:last-child {
    color: #64748b;
    font-weight: 700;
}

.qty-control input[type="number"],
.qty-control input {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

.qty-control input[type="number"]::-webkit-outer-spin-button,
.qty-control input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.segment.disabled,
.segment:disabled {
    opacity: .45;
    cursor: not-allowed;
    filter: grayscale(.25);
}

.student-quota-wrapper {
    margin-top: 14px;
}

.quota-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
    font-size: 13px;
    font-weight: 800;
}

.quota-info-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.addon-cell.addon-disabled,
.checkbox-line.disabled {
    opacity: .55;
    cursor: not-allowed;
}

@keyframes aiSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes aiSpinReverse {
    from { transform: rotate(360deg); }
    to   { transform: rotate(0deg); }
}

@keyframes aiPulseRing {
    0%, 100% { transform: scale(1); opacity: .95; }
    50% { transform: scale(1.035); opacity: .65; }
}

@keyframes aiRobotFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.ai-chat-panel.is-hidden {
    display: flex;
}

.ai-chat-close:hover {
    background: rgba(255,255,255,.20);
    transform: scale(1.05);
}

.ai-msg {
    max-width: 86%;
    padding: 10px 13px;
    margin-bottom: 10px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
    white-space: pre-line;
}

.ai-bot {
    background: #eef6ff;
    color: #243b53;
    border: 1px solid #dbeafe;
    border-bottom-left-radius: 6px;
}

.ai-user {
    margin-left: auto;
    background: linear-gradient(135deg, #6d3df5, #07aeea);
    color: #fff;
    border-bottom-right-radius: 6px;
}

.ai-chat-form input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56,189,248,.14);
}

.ai-chat-form button:hover {
    transform: translateY(-1px);
    opacity: .95;
}

@media (max-width: 768px) {
    .ai-mini-label {
        font-size: 8.5px;
        bottom: 8px;
        padding: 5px 8px;
    }

}

.ai-mini-label.ai-typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    max-width: fit-content;
    border-right: 2px solid rgba(125, 211, 252, .95);
    animation: aiTypewriter 5.8s steps(11, end) infinite,
        aiCaretBlink .75s step-end infinite;
}

@keyframes aiTypewriter {
    0% {
        width: 0;
    }

    38% {
        width: 11ch;
    }

    65% {
        width: 11ch;
    }

    100% {
        width: 0;
    }
}

@keyframes aiCaretBlink {
    0%, 100% {
        border-color: transparent;
    }

    50% {
        border-color: rgba(125, 211, 252, .95);
    }
}

.ai-help-btn:hover {
    transform: translateY(-5px) scale(1.02) !important;
    filter: drop-shadow(0 18px 34px rgba(37, 99, 235, .22)) !important;
}

.ai-help-btn:active {
    transform: translateY(-2px) scale(.98) !important;
}

.ai-glow {
    position: absolute !important;
    inset: 18px;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(56,189,248,.32) 0%, rgba(99,102,241,.18) 52%, transparent 74%) !important;
    filter: blur(13px) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    top: 24px !important;
    left: 50% !important;
    width: 138px !important;
    height: 138px !important;
    transform: translateX(-50%) !important;
}

.ai-ring.ring-1 {
    width: 112px !important;
    height: 112px !important;
    border: 1.4px solid rgba(147,197,253,.42) !important;
    animation: aiSpin 14s linear infinite !important;
}

.ai-ring.ring-2 {
    width: 136px !important;
    height: 136px !important;
    border: 1px dashed rgba(59,130,246,.32) !important;
    animation: aiSpinReverse 19s linear infinite !important;
}

.ai-ring.ring-3 {
    width: 160px !important;
    height: 160px !important;
    border: 1px solid rgba(14,165,233,.18) !important;
    animation: aiPulseRing 3.4s ease-in-out infinite !important;
}

.ai-help-robot-img {
    position: relative !important;
    z-index: 5 !important;
    width: 142px !important;
    height: 142px !important;
    object-fit: contain !important;
    display: block !important;
    pointer-events: none !important;
    filter: drop-shadow(0 14px 20px rgba(15, 23, 42, .16))
        drop-shadow(0 0 16px rgba(56, 189, 248, .20)) !important;
    animation: aiRobotFloat 3.2s ease-in-out infinite !important;
    margin-top: 7px !important;
}

.ai-name-badge {
    position: absolute !important;
    left: 50% !important;
    bottom: 12px !important;
    transform: translateX(-50%) !important;
    z-index: 8 !important;
    width: 158px !important;
    min-height: 52px !important;
    padding: 9px 12px 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    border-radius: 18px !important;
    color: #ffffff !important;
    background: radial-gradient(circle at 100% 0%, rgba(34,211,238,.28), transparent 36%),
        linear-gradient(135deg, rgba(49,46,129,.96), rgba(37,99,235,.92), rgba(6,182,212,.86)) !important;
    border: 1px solid rgba(191,219,254,.42) !important;
    box-shadow: 0 14px 30px rgba(37, 99, 235, .22),
        inset 0 1px 0 rgba(255,255,255,.24) !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.ai-name-badge::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent) !important;
    transform: translateX(-120%) !important;
    animation: aiBadgeShine 3.6s ease-in-out infinite !important;
}

.ai-type-line {
    position: relative !important;
    z-index: 2 !important;
    display: inline-block !important;
    max-width: 120px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: .08em !important;
    border-right: 2px solid rgba(186,230,253,.95) !important;
    animation: aiSaraType 5.6s steps(13, end) infinite,
        aiCaretBlink .75s step-end infinite !important;
}

.ai-name-badge small {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 8.5px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}

.ai-mini-label {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1;
    white-space: nowrap;
    color: #f8fafc;
    background: linear-gradient(135deg, rgba(49,46,129,.86), rgba(30,64,175,.82));
    border: 1px solid rgba(191,219,254,.28);
    box-shadow: 0 8px 20px rgba(37,99,235,.16);
    pointer-events: none;
    display: none !important;
}

@keyframes aiSaraType {
    0% {
        width: 0;
    }

    38% {
        width: 13ch;
    }

    72% {
        width: 13ch;
    }

    100% {
        width: 0;
    }
}

@keyframes aiCaretBlink {
    0%, 100% {
        border-color: transparent;
    }

    50% {
        border-color: rgba(186,230,253,.95);
    }
}

@keyframes aiRobotFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes aiSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes aiSpinReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes aiPulseRing {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .95;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.035);
        opacity: .62;
    }
}

@keyframes aiBadgeShine {
    0%, 60% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

@media (max-width: 768px) {
    .ai-chatbot {
        right: 14px !important;
        bottom: 14px !important;
        width: 152px !important;
        height: 190px !important;
    }

    .ai-help-btn {
        width: 152px !important;
        height: 190px !important;
    }

    .ai-help-robot-img {
        width: 112px !important;
        height: 112px !important;
        margin-top: 6px !important;
    }

    .ai-glow {
        top: 20px !important;
        width: 112px !important;
        height: 112px !important;
    }

    .ai-ring {
        top: 64px !important;
    }

    .ai-ring.ring-1 {
        width: 88px !important;
        height: 88px !important;
    }

    .ai-ring.ring-2 {
        width: 108px !important;
        height: 108px !important;
    }

    .ai-ring.ring-3 {
        width: 126px !important;
        height: 126px !important;
    }

    .ai-name-badge {
        width: 136px !important;
        min-height: 46px !important;
        bottom: 9px !important;
        padding: 8px 10px !important;
        border-radius: 16px !important;
    }

    .ai-type-line {
        font-size: 10px !important;
        max-width: 106px !important;
    }

    .ai-name-badge small {
        font-size: 7.5px !important;
    }

}

.step1-heading-with-legend {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin-bottom: 18px !important;
}

.step1-heading-left {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.step1-payment-legend-top {
    width: min(760px, 52vw);
    padding: 10px 12px;
    border: 1px solid rgba(14, 165, 233, .18);
    border-radius: 18px;
    background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, .16), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.95), rgba(240,249,255,.82));
    box-shadow: 0 12px 26px rgba(15, 23, 42, .045),
        inset 0 1px 0 rgba(255,255,255,.78);
}

.payment-mini-title {
    margin-bottom: 7px;
    color: #0f172a;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.payment-mini-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
}

.payment-mini-items span {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    color: #334155;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-mini-items b {
    width: 25px;
    height: 25px;
    min-width: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed, #2563eb, #06b6d4);
    color: #ffffff;
    font-size: 8.5px;
    font-weight: 950;
    letter-spacing: .03em;
    box-shadow: 0 6px 14px rgba(37, 99, 235, .18);
}

@media (min-width: 1024px) {
    .step-panel[data-step="1"].active {
        display: grid !important;
        grid-template-rows: auto minmax(0, 1fr) !important;
        gap: 12px;
    }

    .step-panel[data-step="1"] .panel-heading {
        margin-bottom: 12px !important;
    }

}

@media (max-width: 1366px) {
    .step1-payment-legend-top {
        width: min(660px, 50vw);
    }

    .payment-mini-items span {
        font-size: 10px;
        padding: 6px 8px;
    }

    .payment-mini-items b {
        width: 23px;
        height: 23px;
        min-width: 23px;
        font-size: 8px;
    }

}

@media (max-width: 1023px) {
    .step1-heading-with-legend {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .step1-payment-legend-top {
        width: 100%;
    }

    .payment-mini-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 520px) {
    .payment-mini-items {
        grid-template-columns: 1fr;
    }

    .payment-mini-items span {
        white-space: normal;
        line-height: 1.25;
    }

}

.ai-chatbot.is-dragging {
    cursor: grabbing !important;
}

.ai-chatbot.is-dragging .ai-help-robot-img {
    animation-play-state: paused !important;
}

.ai-help-btn,
.ai-help-robot-img,
.ai-name-badge {
    user-select: none !important;
    -webkit-user-drag: none !important;
}

.summary-subtotal-before-sst strong {
    color: #0f172a !important;
}

.summary-sst-line {
    color: #075985;
}

.summary-sst-line strong {
    color: #0284c7 !important;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 2px solid #dbeafe !important;
    font-size: 18px;
    font-weight: 900;
}

.ai-ring {
    position: absolute !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 2 !important;
    left: 50% !important;
    top: 78px !important;
    transform: translate(-50%, -50%) !important;
    border: 0 !important;
    animation: none !important;
    overflow: visible !important;
}

.ai-ring::before,
.ai-ring::after {
    content: "" !important;
    position: absolute !important;
    border-radius: 50% !important;
    pointer-events: none !important;
}

.ai-ring::before {
    inset: 0 !important;
}

.ai-ring::after {
    width: 8px !important;
    height: 8px !important;
    top: -4px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(56, 189, 248, .95) !important;
    box-shadow: 0 0 10px rgba(56, 189, 248, .95),
        0 0 18px rgba(59, 130, 246, .55) !important;
}

.ai-ring.ring-1::before {
    border: 1.4px solid rgba(147, 197, 253, .48) !important;
    animation: saraRingSpin 10s linear infinite !important;
}

.ai-ring.ring-1::after {
    animation: saraRingSpin 10s linear infinite !important;
}

.ai-ring.ring-2::before {
    border: 1px dashed rgba(59, 130, 246, .42) !important;
    animation: saraRingSpinReverse 15s linear infinite !important;
}

.ai-ring.ring-2::after {
    width: 6px !important;
    height: 6px !important;
    top: -3px !important;
    background: rgba(168, 85, 247, .95) !important;
    box-shadow: 0 0 10px rgba(168, 85, 247, .85),
        0 0 18px rgba(59, 130, 246, .45) !important;
    animation: saraRingSpinReverse 15s linear infinite !important;
}

.ai-ring.ring-3::before {
    border: 1px solid rgba(14, 165, 233, .24) !important;
    animation: saraRingPulse 3.2s ease-in-out infinite !important;
}

.ai-ring.ring-3::after {
    display: none !important;
}

@keyframes saraRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes saraRingSpinReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes saraRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .9;
    }

    50% {
        transform: scale(1.05);
        opacity: .55;
    }
}

.ai-chatbot {
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    z-index: 99999 !important;
    overflow: visible !important;
    width: 190px !important;
    height: 225px !important;
    cursor: grab !important;
    user-select: none !important;
    touch-action: none !important;
}

.ai-chatbot.is-chat-open .ai-help-btn {
    opacity: 0 !important;
    transform: translateY(18px) scale(.72) !important;
    pointer-events: none !important;
    filter: blur(1px) !important;
}

.ai-chat-panel {
    position: fixed !important;
    right: auto !important;
    bottom: auto !important;
    width: var(--sara-panel-width, min(390px, calc(100vw - 24px))) !important;
    max-width: calc(100vw - 24px) !important;
    height: var(--sara-panel-height, min(540px, calc(100vh - 28px))) !important;
    max-height: calc(100vh - 28px) !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 30px !important;
    box-shadow: none !important;
    overflow: visible !important;
    backdrop-filter: blur(10px);
    transform: translateY(22px) scale(.92) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity .28s ease, transform .32s cubic-bezier(.22, 1, .36, 1) !important;
    z-index: 999999 !important;
    left: var(--sara-panel-left, 24px) !important;
    top: var(--sara-panel-top, 24px) !important;
    transform-origin: 50% 72% !important;
}

.ai-chat-panel::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    border-radius: 30px !important;
    background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, .18), transparent 34%),
        radial-gradient(circle at 0% 100%, rgba(124, 58, 237, .14), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.96)) !important;
    border: 1px solid rgba(186, 230, 253, .95) !important;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .22),
        0 0 0 1px rgba(255,255,255,.75) inset,
        0 0 36px rgba(14, 165, 233, .12) !important;
}

.ai-chat-panel::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    border-radius: 30px !important;
    pointer-events: none !important;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.30) 38%, transparent 58%) !important;
    transform: translateX(-130%) !important;
    animation: saraPanelShine 4.8s ease-in-out infinite !important;
}

.ai-chat-panel.is-open {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.ai-chat-header::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px) !important;
    background-size: 22px 22px !important;
    opacity: .35 !important;
    pointer-events: none !important;
}

.ai-chat-header-left,
.ai-chat-close {
    position: relative !important;
    z-index: 2 !important;
}

.ai-chat-close {
    width: 34px !important;
    height: 34px !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 50%;
    background: rgba(255,255,255,.16) !important;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
    backdrop-filter: blur(8px) !important;
}

.ai-chat-messages,
.ai-chat-suggestions,
.ai-chat-form {
    position: relative !important;
    z-index: 3 !important;
}

.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: radial-gradient(circle at 100% 0%, rgba(224,242,254,.85), transparent 36%),
        linear-gradient(180deg, #f8fbff, #ffffff) !important;
}

.ai-msg.ai-bot {
    border-radius: 18px 18px 18px 6px !important;
    background: linear-gradient(135deg, rgba(239,246,255,.96), rgba(240,249,255,.94)) !important;
    border: 1px solid rgba(191,219,254,.85) !important;
    box-shadow: 0 10px 22px rgba(15,23,42,.045) !important;
}

.ai-msg.ai-user {
    border-radius: 18px 18px 6px 18px !important;
    background: linear-gradient(135deg, #6d3df5, #2563eb, #06b6d4) !important;
    box-shadow: 0 10px 22px rgba(37,99,235,.18) !important;
}

.ai-chat-suggestions {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 12px;
    background: rgba(255,255,255,.92) !important;
    border-top: 1px solid rgba(219,234,254,.90) !important;
}

.ai-suggestion {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: rgba(240,249,255,.90) !important;
    color: #075985 !important;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s ease;
    border-color: rgba(14,165,233,.24) !important;
}

.ai-suggestion:hover {
    background: #e0f2fe !important;
    border-color: rgba(14,165,233,.50) !important;
    transform: translateY(-1px) !important;
}

.ai-chat-form {
    display: flex;
    gap: 8px;
    padding: 14px !important;
    border-top: 1px solid rgba(219,234,254,.95) !important;
    background: rgba(255,255,255,.96) !important;
    border-radius: 0 0 30px 30px !important;
}

.ai-chat-form input {
    flex: 1;
    min-width: 0;
    padding: 11px 13px;
    border: 1px solid #dbeafe;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #0f172a;
    outline: none;
    font-size: 13px;
    height: 46px !important;
    border-color: rgba(191,219,254,.95) !important;
}

.ai-chat-form button {
    flex: 0 0 auto;
    padding: 0 16px;
    border: 0;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #7c3aed, #2563eb, #06b6d4) !important;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
    height: 46px !important;
    min-width: 66px !important;
    box-shadow: 0 12px 24px rgba(37,99,235,.22) !important;
}

.ai-chatbot.is-dragging .ai-help-btn {
    transform: scale(.96) !important;
    filter: drop-shadow(0 18px 34px rgba(37, 99, 235, .28)) !important;
}

@keyframes saraPanelRobotFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes saraPanelOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes saraPanelOrbitReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes saraPanelShine {
    0%, 62% {
        transform: translateX(-130%);
    }

    100% {
        transform: translateX(130%);
    }
}

@media (max-width: 768px) {
    .ai-chat-panel {
        width: calc(100vw - 24px) !important;
        height: 68vh !important;
        bottom: 198px !important;
        right: 0 !important;
        border-radius: 26px !important;
    }

    .ai-chat-panel::before,
    .ai-chat-panel::after {
        border-radius: 26px !important;
    }

    .ai-chat-form {
        border-radius: 0 0 26px 26px !important;
    }

}

.ai-chat-header-left strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px !important;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .02em !important;
}

.ai-chat-header-left span {
    display: block;
    font-size: 11.5px !important;
    line-height: 1.45;
    color: rgba(255,255,255,.82) !important;
}

@keyframes saraPanelRobotFloatSoft {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }

    35% {
        transform: translateX(-50%) translateY(-8px) rotate(-1.2deg);
    }

    70% {
        transform: translateX(-50%) translateY(-3px) rotate(1deg);
    }
}

@keyframes saraPanelGlowBreath {
    0%, 100% {
        opacity: .88;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: .62;
        transform: translateX(-50%) scale(1.06);
    }
}

@media (max-width: 768px) {
    .ai-panel-orbit {
        top: 60px !important;
    }

}

.ai-panel-hero {
    position: absolute !important;
    top: -82px !important;
    left: 50% !important;
    z-index: 20 !important;
    width: 150px !important;
    height: 140px !important;
    transform: translateX(-50%) !important;
    pointer-events: none !important;
}

.ai-panel-robot-img {
    position: absolute !important;
    left: calc(50% - 58px) !important;
    top: 12px !important;
    z-index: 4 !important;
    width: 116px !important;
    height: 116px !important;
    object-fit: contain !important;
    transform: none !important;
    filter: drop-shadow(0 14px 22px rgba(15, 23, 42, .22))
        drop-shadow(0 0 18px rgba(56, 189, 248, .34)) !important;
    animation: saraRobotRealFloat 3.2s ease-in-out infinite !important;
    translate: 0 0;
    rotate: 0deg;
    will-change: translate, rotate;
}

.ai-panel-glow {
    position: absolute !important;
    left: calc(50% - 62px) !important;
    top: 20px !important;
    z-index: 1 !important;
    width: 124px !important;
    height: 124px !important;
    border-radius: 50% !important;
    transform: none !important;
    background: radial-gradient(circle, rgba(56, 189, 248, .36), rgba(124, 58, 237, .18) 54%, transparent 72%) !important;
    filter: blur(12px) !important;
    animation: saraGlowBreathFixed 3.2s ease-in-out infinite !important;
    scale: 1;
    will-change: scale, opacity;
}

.ai-panel-orbit {
    position: absolute !important;
    left: 50% !important;
    top: 70px !important;
    z-index: 2 !important;
    border-radius: 50% !important;
    transform: none !important;
    pointer-events: none !important;
    transform-origin: center center !important;
    translate: 0 0;
    rotate: 0deg;
    will-change: rotate, opacity;
}

.ai-panel-orbit.orbit-1 {
    width: 118px !important;
    height: 118px !important;
    border: 1.4px solid rgba(147, 197, 253, .50) !important;
    animation: saraOrbitSpinFixed 9s linear infinite !important;
    left: calc(50% - 59px) !important;
    top: 10px !important;
}

.ai-panel-orbit.orbit-2 {
    width: 144px !important;
    height: 144px !important;
    border: 1px dashed rgba(59, 130, 246, .42) !important;
    animation: saraOrbitSpinReverseFixed 15s linear infinite !important;
    left: calc(50% - 72px) !important;
    top: -3px !important;
}

.ai-panel-orbit::before {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: -4px !important;
    width: 7px !important;
    height: 7px !important;
    border-radius: 999px !important;
    transform: translateX(-50%) !important;
    background: rgba(56, 189, 248, .96) !important;
    box-shadow: 0 0 10px rgba(56, 189, 248, .92),
        0 0 18px rgba(59, 130, 246, .55) !important;
}

.ai-panel-orbit.orbit-2::before {
    width: 6px !important;
    height: 6px !important;
    top: -3px !important;
    background: rgba(168, 85, 247, .96) !important;
    box-shadow: 0 0 10px rgba(168, 85, 247, .88),
        0 0 18px rgba(59, 130, 246, .45) !important;
}

.ai-chat-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 64px 20px 15px !important;
    background: radial-gradient(circle at 20% 0%, rgba(34,211,238,.24), transparent 34%),
        radial-gradient(circle at 100% 0%, rgba(124,58,237,.22), transparent 34%),
        linear-gradient(135deg, #111c56, #17427f, #0891b2) !important;
    color: #fff;
    position: relative !important;
    z-index: 3 !important;
    min-height: 112px !important;
    border-radius: 30px 30px 0 0 !important;
    overflow: hidden !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.20) !important;
}

@keyframes saraRobotRealFloat {
    0%, 100% {
        translate: 0 0;
        rotate: 0deg;
    }

    35% {
        translate: 0 -9px;
        rotate: -1.2deg;
    }

    70% {
        translate: 0 -4px;
        rotate: 1deg;
    }
}

@keyframes saraOrbitSpinFixed {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

@keyframes saraOrbitSpinReverseFixed {
    from {
        rotate: 360deg;
    }

    to {
        rotate: 0deg;
    }
}

@keyframes saraGlowBreathFixed {
    0%, 100% {
        opacity: .9;
        scale: 1;
    }

    50% {
        opacity: .58;
        scale: 1.08;
    }
}

@media (max-width: 768px) {
    .ai-panel-hero {
        top: -70px !important;
        width: 132px !important;
        height: 122px !important;
    }

    .ai-panel-robot-img {
        width: 100px !important;
        height: 100px !important;
        top: 10px !important;
        left: calc(50% - 50px) !important;
    }

    .ai-panel-glow {
        width: 108px !important;
        height: 108px !important;
        top: 18px !important;
        left: calc(50% - 54px) !important;
    }

    .ai-panel-orbit.orbit-1 {
        width: 102px !important;
        height: 102px !important;
        left: calc(50% - 51px) !important;
        top: 9px !important;
    }

    .ai-panel-orbit.orbit-2 {
        width: 124px !important;
        height: 124px !important;
        left: calc(50% - 62px) !important;
        top: -2px !important;
    }

    .ai-chat-header {
        min-height: 104px !important;
        padding: 58px 18px 14px !important;
        border-radius: 26px 26px 0 0 !important;
    }

}

.ai-help-btn {
    position: relative !important;
    width: 190px !important;
    height: 225px !important;
    padding: 0 !important;
    border: 0 !important;
    outline: none !important;
    cursor: pointer !important;
    background: transparent !important;
    border-radius: 28px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    overflow: visible !important;
    transition: transform .28s ease, filter .28s ease !important;
}

.ai-help-btn .ai-help-robot-img {
    position: absolute !important;
    left: calc(50% - 70px) !important;
    top: 4px !important;
    width: 140px !important;
    height: 140px !important;
    margin-top: 0 !important;
    object-fit: contain !important;
    transform: none !important;
    translate: 0 0;
    rotate: 0deg;
    z-index: 5 !important;
    filter: drop-shadow(0 16px 24px rgba(15, 23, 42, .20))
        drop-shadow(0 0 18px rgba(56, 189, 248, .30)) !important;
    animation: saraClosedRobotFloat 3.2s ease-in-out infinite !important;
    will-change: translate, rotate;
}

.ai-help-btn .ai-glow {
    position: absolute !important;
    left: calc(50% - 78px) !important;
    top: 2px !important;
    width: 156px !important;
    height: 156px !important;
    transform: none !important;
    scale: 1;
    border-radius: 50% !important;
    z-index: 1 !important;
    background: radial-gradient(circle, rgba(56, 189, 248, .36), rgba(124, 58, 237, .18) 54%, transparent 72%) !important;
    filter: blur(13px) !important;
    animation: saraClosedGlowBreath 3.2s ease-in-out infinite !important;
    will-change: scale, opacity;
}

.ai-help-btn .ai-ring {
    position: absolute !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    transform: none !important;
    transform-origin: center center !important;
    translate: 0 0;
    rotate: 0deg;
    z-index: 2 !important;
    overflow: visible !important;
    will-change: rotate, opacity;
}

.ai-help-btn .ai-ring::before {
    display: none !important;
}

.ai-help-btn .ai-ring::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: -4px !important;
    width: 8px !important;
    height: 8px !important;
    display: block !important;
    border-radius: 999px !important;
    transform: translateX(-50%) !important;
}

.ai-help-btn .ai-ring.ring-1 {
    left: calc(50% - 68px) !important;
    top: 12px !important;
    width: 136px !important;
    height: 136px !important;
    border: 1.4px solid rgba(147, 197, 253, .50) !important;
    animation: saraClosedOrbitBlue 9s linear infinite !important;
}

.ai-help-btn .ai-ring.ring-1::after {
    background: rgba(56, 189, 248, .98) !important;
    box-shadow: 0 0 10px rgba(56, 189, 248, .95),
        0 0 18px rgba(59, 130, 246, .60) !important;
}

.ai-help-btn .ai-ring.ring-2 {
    left: calc(50% - 82px) !important;
    top: -2px !important;
    width: 164px !important;
    height: 164px !important;
    border: 1px dashed rgba(59, 130, 246, .42) !important;
    animation: saraClosedOrbitPurple 15s linear infinite !important;
}

.ai-help-btn .ai-ring.ring-2::after {
    width: 7px !important;
    height: 7px !important;
    top: -3px !important;
    background: rgba(168, 85, 247, .98) !important;
    box-shadow: 0 0 10px rgba(168, 85, 247, .90),
        0 0 18px rgba(59, 130, 246, .50) !important;
}

.ai-help-btn .ai-ring.ring-3 {
    left: calc(50% - 90px) !important;
    top: -10px !important;
    width: 180px !important;
    height: 180px !important;
    border: 1px solid rgba(14, 165, 233, .24) !important;
    animation: saraClosedPulseRing 3.4s ease-in-out infinite !important;
}

.ai-help-btn .ai-ring.ring-3::after {
    display: none !important;
}

.ai-help-btn::before,
.ai-help-btn::after {
    content: "" !important;
    position: absolute !important;
    z-index: 4 !important;
    width: 9px !important;
    height: 9px !important;
    border-radius: 999px !important;
    pointer-events: none !important;
}

.ai-help-btn::before {
    left: 56% !important;
    top: 2px !important;
    background: rgba(56, 189, 248, .95) !important;
    box-shadow: 0 0 10px rgba(56, 189, 248, .90),
        0 0 18px rgba(59, 130, 246, .45) !important;
    animation: saraClosedParticleOne 3.1s ease-in-out infinite !important;
}

.ai-help-btn::after {
    left: 76% !important;
    top: 98px !important;
    width: 8px !important;
    height: 8px !important;
    background: rgba(168, 85, 247, .95) !important;
    box-shadow: 0 0 10px rgba(168, 85, 247, .90),
        0 0 18px rgba(59, 130, 246, .45) !important;
    animation: saraClosedParticleTwo 3.8s ease-in-out infinite !important;
}

.ai-help-btn .ai-name-badge {
    z-index: 10 !important;
}

@keyframes saraClosedRobotFloat {
    0%, 100% {
        translate: 0 0;
        rotate: 0deg;
    }

    35% {
        translate: 0 -9px;
        rotate: -1.2deg;
    }

    70% {
        translate: 0 -4px;
        rotate: 1deg;
    }
}

@keyframes saraClosedGlowBreath {
    0%, 100% {
        opacity: .9;
        scale: 1;
    }

    50% {
        opacity: .58;
        scale: 1.08;
    }
}

@keyframes saraClosedOrbitBlue {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

@keyframes saraClosedOrbitPurple {
    from {
        rotate: 360deg;
    }

    to {
        rotate: 0deg;
    }
}

@keyframes saraClosedPulseRing {
    0%, 100% {
        scale: 1;
        opacity: .9;
    }

    50% {
        scale: 1.055;
        opacity: .52;
    }
}

@keyframes saraClosedParticleOne {
    0%, 100% {
        translate: 0 0;
        opacity: .9;
    }

    50% {
        translate: 0 -8px;
        opacity: .55;
    }
}

@keyframes saraClosedParticleTwo {
    0%, 100% {
        translate: 0 0;
        opacity: .85;
    }

    50% {
        translate: 7px -7px;
        opacity: .48;
    }
}

@media (max-width: 768px) {
    .ai-help-btn .ai-help-robot-img {
        left: calc(50% - 56px) !important;
        top: 6px !important;
        width: 112px !important;
        height: 112px !important;
    }

    .ai-help-btn .ai-glow {
        left: calc(50% - 62px) !important;
        top: 2px !important;
        width: 124px !important;
        height: 124px !important;
    }

    .ai-help-btn .ai-ring.ring-1 {
        left: calc(50% - 54px) !important;
        top: 10px !important;
        width: 108px !important;
        height: 108px !important;
    }

    .ai-help-btn .ai-ring.ring-2 {
        left: calc(50% - 65px) !important;
        top: -1px !important;
        width: 130px !important;
        height: 130px !important;
    }

    .ai-help-btn .ai-ring.ring-3 {
        left: calc(50% - 72px) !important;
        top: -8px !important;
        width: 144px !important;
        height: 144px !important;
    }

    .ai-help-btn::before {
        top: 2px !important;
    }

    .ai-help-btn::after {
        top: 80px !important;
    }

}

.payment-option.disabled {
  opacity: 0.48;
  cursor: not-allowed;
  background: #f8fafc;
}

.payment-option.disabled input {
  cursor: not-allowed;
}

.hrd-claim-closed-notice {
  border-color: rgba(220, 38, 38, 0.18);
  background: rgba(254, 242, 242, 0.9);
  color: #991b1b;
}