.register-page,
.register-page * {
    box-sizing: border-box;
}

.register-page {
    --register-ink: #1f2340;
    --register-muted: #667085;
    --register-violet: #6d4aff;
    --register-violet-dark: #5338d8;
    --register-cyan: #0ea5b7;
    --register-line: rgba(109, 74, 255, 0.14);
    min-height: 100dvh;
    overflow: hidden;
    position: relative;
    padding: 22px clamp(18px, 4vw, 54px) 112px;
    background:
        radial-gradient(circle at 8% 4%, rgba(137, 101, 255, 0.17), transparent 31rem),
        radial-gradient(circle at 94% 26%, rgba(34, 211, 238, 0.13), transparent 28rem),
        linear-gradient(180deg, #fbfaff 0%, #f8fbff 58%, #ffffff 100%);
    color: var(--register-ink);
}

.register-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(109, 74, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 74, 255, 0.035) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.bg-gradient-1,
.bg-gradient-2 {
    display: none;
}

.register-nav {
    position: relative;
    z-index: 2;
    width: min(100%, 1120px);
    min-height: 58px;
    margin: 0 auto;
    padding: 9px 10px 9px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 18px 48px -38px rgba(70, 49, 146, 0.5);
}

.register-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--register-ink);
    text-decoration: none;
}

.register-brand img {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    box-shadow: 0 8px 20px -12px rgba(83, 56, 216, 0.72);
}

.register-brand-copy {
    display: grid;
    line-height: 1.05;
}

.register-brand-copy > span {
    font-size: 0.97rem;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.register-brand-copy small {
    margin-top: 4px;
    color: #7a8496;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.register-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.register-nav-link {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #596276;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 750;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.register-nav-link:hover {
    color: var(--register-violet-dark);
    background: rgba(109, 74, 255, 0.06);
}

.register-nav-link.primary {
    border-color: rgba(109, 74, 255, 0.12);
    color: #fff;
    background: linear-gradient(135deg, #7454ff, #5d42df);
    box-shadow: 0 10px 22px -14px rgba(83, 56, 216, 0.78);
}

.register-nav-link.primary:hover {
    color: #fff;
    transform: translateY(-1px);
}

.register-container {
    width: min(100%, 980px);
    max-width: none;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.register-header {
    max-width: 900px;
    margin: clamp(30px, 4.5vw, 46px) auto 22px;
    text-align: center;
    color: var(--register-ink);
}

.register-header img {
    display: none;
}

.register-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(109, 74, 255, 0.13);
    border-radius: 999px;
    color: var(--register-violet-dark);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
}

.register-header h1 {
    margin: 0;
    color: var(--register-ink);
    font-size: clamp(2rem, 4.2vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.register-header p {
    max-width: 630px;
    margin: 14px auto 0;
    color: var(--register-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.steps-shell {
    margin-bottom: 18px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 46px -40px rgba(60, 41, 137, 0.58);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 0;
    margin: 0;
}

.step {
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #929aab;
    font-size: 0.83rem;
    font-weight: 700;
}

.step:not(:last-child)::after {
    content: "";
    height: 1px;
    flex: 1;
    min-width: 18px;
    margin: 0 10px;
    background: #e5e7ee;
}

.step.active {
    color: var(--register-violet-dark);
}

.step.completed {
    color: #188663;
}

.step-number {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 850;
    background: rgba(255, 255, 255, 0.72);
}

.step.active .step-number {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, #7554ff, #5d42df);
    box-shadow: 0 8px 18px -10px rgba(83, 56, 216, 0.85);
}

.step.completed .step-number {
    border-color: rgba(24, 134, 99, 0.18);
    color: #16805e;
    background: #eafaf4;
}

.mobile-progress {
    display: none;
}

.register-main {
    padding: clamp(22px, 4.4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 249, 255, 0.91)),
        #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 32px 80px -52px rgba(57, 39, 134, 0.55);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.step-content {
    display: none;
}

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

.step-heading {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 26px;
}

.step-heading-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(109, 74, 255, 0.12);
    border-radius: 15px;
    color: var(--register-violet);
    background: linear-gradient(145deg, #f5f1ff, #effcff);
    font-size: 1rem;
}

.section-title {
    margin: 1px 0 5px;
    color: var(--register-ink);
    font-size: 1.32rem;
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.section-description {
    margin: 0;
    color: var(--register-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.form-section {
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid rgba(109, 74, 255, 0.09);
    border-radius: 22px;
    background: rgba(249, 250, 255, 0.76);
}

.form-section + .form-section {
    margin-top: 16px;
}

.form-section-header {
    margin-bottom: 18px;
}

.form-section-header h3 {
    margin: 0;
    color: #343850;
    font-size: 0.98rem;
    font-weight: 820;
}

.form-section-header p {
    margin: 5px 0 0;
    color: #7a8394;
    font-size: 0.8rem;
    line-height: 1.55;
}

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

.form-group {
    min-width: 0;
    margin-bottom: 17px;
}

.form-section > .form-group:last-child,
.form-row:last-child .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #41475b;
    font-size: 0.84rem;
    font-weight: 750;
}

.form-group input,
.form-group select,
.promo-input-group input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #dfe2ea;
    border-radius: 13px;
    outline: none;
    color: #292d43;
    background: rgba(255, 255, 255, 0.94);
    font: inherit;
    font-size: 0.94rem;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-group input::placeholder,
.promo-input-group input::placeholder {
    color: #a3a9b7;
}

.form-group input:hover,
.form-group select:hover,
.promo-input-group input:hover {
    border-color: #c8c4e5;
}

.form-group input:focus,
.form-group select:focus,
.promo-input-group input:focus {
    border-color: rgba(109, 74, 255, 0.68);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(109, 74, 255, 0.09);
}

.form-group input:disabled {
    color: #536071;
    background: #f1f3f7;
    -webkit-text-fill-color: #536071;
    opacity: 1;
}

.form-helper {
    margin: 7px 0 0;
    color: #7c8495;
    font-size: 0.76rem;
    line-height: 1.5;
}

.field-error,
.error-message {
    display: none;
    margin-top: 7px;
    color: #c9374f;
    font-size: 0.77rem;
    line-height: 1.45;
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: #e25a70;
    background: #fffafb;
    box-shadow: 0 0 0 3px rgba(226, 90, 112, 0.08);
}

.form-group.has-error .field-error,
.form-group.has-error .error-message {
    display: block;
}

.password-requirements {
    margin-top: 9px;
    padding: 11px 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 10px;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 12px;
    color: #8c94a3;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.73rem;
}

.requirement-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.requirement-item.valid {
    color: #14815e;
}

.requirement-item i {
    flex: 0 0 auto;
    font-size: 0.66rem;
}

.admin-code-note {
    margin: 2px 0 18px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid rgba(14, 165, 183, 0.14);
    border-radius: 14px;
    color: #526073;
    background: #f3fcfd;
    font-size: 0.79rem;
    line-height: 1.55;
}

.admin-code-note i {
    margin-top: 3px;
    color: var(--register-cyan);
}

.verification-panel {
    margin: 0 0 18px;
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid rgba(109, 74, 255, 0.11);
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f6ff, #f1fcfd);
}

.verification-panel p {
    margin: 0;
    color: #566174;
    font-size: 0.9rem;
    line-height: 1.7;
}

.verification-email {
    display: inline-flex;
    margin-top: 12px;
    padding: 7px 11px;
    border: 1px solid rgba(109, 74, 255, 0.12);
    border-radius: 10px;
    color: var(--register-violet-dark);
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.87rem;
    font-weight: 800;
    word-break: break-all;
}

.verification-meta {
    margin: 11px 0 0 !important;
    color: #7a8496 !important;
    font-size: 0.77rem !important;
}

.verification-status {
    display: none;
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 13px;
    font-size: 0.82rem;
    line-height: 1.55;
}

.verification-status.info,
.verification-status.success,
.verification-status.error {
    display: block;
}

.verification-status.info {
    border: 1px solid #c9defb;
    color: #285d9d;
    background: #f0f7ff;
}

.verification-status.success {
    border: 1px solid #bce8d5;
    color: #176c50;
    background: #effbf6;
}

.verification-status.error {
    border: 1px solid #f4c5cd;
    color: #b33249;
    background: #fff5f6;
}

#registrationOtp {
    text-align: center;
    font-size: 1.22rem;
    font-weight: 850;
    letter-spacing: 0.42em;
    font-variant-numeric: tabular-nums;
}

.package-selection {
    display: grid;
    gap: 16px;
    margin: 0 0 20px;
}

.registration-package-group {
    display: grid;
    gap: 10px;
}

.package-group-title {
    margin: 0;
    color: #687184;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.package-option {
    width: 100%;
    min-width: 0;
    min-height: 116px;
    position: relative;
    padding: 17px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    overflow: hidden;
    border: 1px solid #e1e3eb;
    border-radius: 18px;
    color: inherit;
    text-align: left;
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease, background 170ms ease;
}

.package-option::after {
    content: "";
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    border: 1.5px solid #c6cad4;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 4px #fff;
}

.package-option:hover {
    border-color: rgba(109, 74, 255, 0.34);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 35px -30px rgba(76, 53, 166, 0.72);
}

.package-option.selected {
    border-color: rgba(109, 74, 255, 0.66);
    background: linear-gradient(135deg, #fbf9ff, #f3fdff);
    box-shadow: 0 18px 40px -32px rgba(76, 53, 166, 0.75);
}

.package-option.selected::after {
    border-color: var(--register-violet);
    background: var(--register-violet);
}

.package-option.trial-option {
    min-height: 104px;
    border-color: rgba(14, 165, 183, 0.18);
    background: linear-gradient(135deg, #f7fdff, #faf8ff);
}

.package-option-info {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.package-option-name-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.package-option-name {
    color: #30344b;
    font-size: 1rem;
    font-weight: 850;
}

.package-badge {
    padding: 4px 7px;
    border-radius: 999px;
    color: var(--register-violet-dark);
    background: #eee9ff;
    font-size: 0.66rem;
    font-weight: 800;
}

.package-option-messages {
    color: #737d8e;
    font-size: 0.78rem;
    line-height: 1.5;
}

.package-option-price-wrap {
    margin-left: auto;
    display: grid;
    flex: 0 0 auto;
    text-align: right;
}

.package-option-price {
    color: var(--register-violet-dark);
    font-size: 1.1rem;
    font-weight: 880;
    white-space: nowrap;
}

.package-option-duration {
    margin-top: 3px;
    color: #9299a7;
    font-size: 0.68rem;
    white-space: nowrap;
}

.package-loading {
    display: grid;
    gap: 12px;
}

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

.package-skeleton-card {
    min-height: 112px;
    padding: 18px;
    border: 1px solid #ececf2;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.package-skeleton-card.trial {
    min-height: 96px;
}

.package-skeleton-line {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ececf3 25%, #f7f7fb 48%, #ececf3 72%);
    background-size: 200% 100%;
    animation: register-shimmer 1.4s linear infinite;
}

.package-skeleton-line + .package-skeleton-line {
    margin-top: 12px;
}

.package-skeleton-line.short {
    width: 34%;
}

.package-skeleton-line.medium {
    width: 68%;
}

.package-load-error {
    padding: 24px;
    border: 1px solid #f1ced4;
    border-radius: 18px;
    text-align: center;
    background: #fff7f8;
}

.package-load-error i {
    color: #c43d55;
}

.package-load-error h3 {
    margin: 10px 0 5px;
    color: #60333c;
    font-size: 0.98rem;
}

.package-load-error p {
    margin: 0 0 14px;
    color: #835e65;
    font-size: 0.8rem;
}

.package-load-error button {
    min-height: 40px;
    padding: 0 15px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--register-violet);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 750;
    cursor: pointer;
}

.promo-section {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid rgba(109, 74, 255, 0.09);
    border-radius: 18px;
    background: #fafaff;
}

.promo-section .section-title {
    margin: 0 0 12px;
    font-size: 0.92rem;
}

.promo-input-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
}

.promo-input-group button {
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: #4f5670;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 760;
    cursor: pointer;
}

.promo-input-group button:disabled {
    opacity: 0.62;
    cursor: wait;
}

.promo-result {
    margin-top: 10px;
    padding: 11px 12px;
    border-radius: 11px;
    font-size: 0.78rem;
    line-height: 1.5;
}

.promo-result.success {
    color: #176c50;
    background: #edf9f4;
}

.promo-result.error {
    color: #ad3248;
    background: #fff1f3;
}

.price-summary {
    margin: 18px 0 0;
    padding: 20px;
    border: 1px solid rgba(109, 74, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(135deg, #faf8ff, #f3fcfd);
}

.price-row {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #606a7d;
    font-size: 0.86rem;
}

.price-row.discount {
    color: #18805f;
}

.price-row.total {
    margin-top: 9px;
    padding-top: 14px;
    border-top: 1px solid rgba(109, 74, 255, 0.12);
    color: #2d3149;
    font-size: 1.03rem;
    font-weight: 820;
}

.price-row.total .price {
    color: var(--register-violet-dark);
    font-size: 1.25rem;
}

.payment-trust {
    margin: 18px 0 0;
    padding: 17px 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    border: 1px solid #e8e9ef;
    border-radius: 17px;
    background: #fbfbfd;
}

.payment-trust span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #6f7889;
    font-size: 0.74rem;
    text-align: center;
}

.payment-trust i {
    color: var(--register-violet);
}

.payment-method-card {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid rgba(14, 165, 183, 0.13);
    border-radius: 18px;
    background: linear-gradient(135deg, #f9fdff, #fbf9ff);
}

.payment-method-card .section-title {
    justify-content: center;
    margin: 0 0 7px;
    font-size: 0.98rem;
}

.payment-method-card > p {
    max-width: 600px;
    margin: 0 auto;
    color: #6d7687;
    font-size: 0.82rem;
    line-height: 1.6;
    text-align: center;
}

.btn-container {
    display: flex;
    align-items: stretch;
    gap: 10px;
    margin-top: 24px;
}

.btn-back,
.btn-next,
.btn-pay,
.success-container a {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 780;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, opacity 160ms ease;
}

.btn-back {
    flex: 1;
    border-color: #e2e4eb;
    color: #596174;
    background: #f7f7fa;
}

.btn-next,
.btn-pay {
    flex: 2;
    color: #fff;
    background: linear-gradient(135deg, #7554ff, #5c42df);
    box-shadow: 0 16px 28px -20px rgba(83, 56, 216, 0.88);
}

.btn-back:hover,
.btn-next:hover,
.btn-pay:hover {
    transform: translateY(-1px);
}

.btn-back:hover {
    background: #f1eff9;
}

.btn-next:hover,
.btn-pay:hover {
    opacity: 1;
    box-shadow: 0 18px 32px -19px rgba(83, 56, 216, 0.92);
}

.btn-back:disabled,
.btn-next:disabled,
.btn-pay:disabled {
    opacity: 0.56;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.button-spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.38);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin-ring 0.72s linear infinite;
}

.btn-back .button-spinner {
    border-color: rgba(89, 97, 116, 0.24);
    border-top-color: currentColor;
}

.success-container {
    display: none;
    padding: 38px 20px 14px;
    text-align: center;
}

.success-container i {
    color: #18a172;
    font-size: 3.5rem;
}

.success-container h2 {
    margin: 14px 0 6px;
    color: #176b51;
}

.success-container p {
    margin: 0 0 20px;
    color: #697386;
}

.success-container a {
    color: #fff;
    background: linear-gradient(135deg, #7554ff, #5c42df);
}

.qr-container {
    display: none;
}

.recaptcha-terms {
    margin-top: 24px;
    color: #969dac;
    font-size: 0.67rem;
    line-height: 1.5;
    text-align: center;
}

.recaptcha-terms a {
    color: #6d56cd;
    text-decoration: none;
}

.grecaptcha-badge {
    visibility: hidden;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    background: rgba(250, 249, 255, 0.95);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: opacity 180ms ease;
}

.loading-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.premium-loader-container {
    width: 76px;
    height: 76px;
}

.loader-ring {
    border-width: 2px;
}

.loader-ring-1 {
    box-shadow: none;
}

.loader-ring-2 {
    width: 58px;
    height: 58px;
    box-shadow: none;
}

.loader-logo {
    width: 36px;
    height: 36px;
}

.loading-text-container {
    margin-top: 18px;
}

.loading-text {
    font-size: 1rem;
}

.loading-subtext {
    color: #7e8798;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

@keyframes register-shimmer {
    0% { background-position: 180% 0; }
    100% { background-position: -20% 0; }
}

@media (max-width: 760px) {
    .register-page {
        padding: 14px 14px 104px;
    }

    .register-nav {
        min-height: 54px;
        padding: 8px 8px 8px 10px;
        border-radius: 17px;
    }

    .register-brand img {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 10px;
    }

    .register-brand-copy > span {
        font-size: 0.9rem;
    }

    .register-brand-copy small {
        font-size: 0.59rem;
    }

    .register-nav-home {
        display: none;
    }

    .register-nav-link {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .register-header {
        margin: 28px auto 21px;
    }

    .register-eyebrow {
        margin-bottom: 10px;
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .register-header h1 {
        font-size: clamp(1.75rem, 9vw, 2.2rem);
    }

    .register-header p {
        margin-top: 10px;
        font-size: 0.88rem;
        line-height: 1.62;
    }

    .steps-shell {
        padding: 13px 14px;
        border-radius: 17px;
    }

    .steps-container {
        display: none;
    }

    .mobile-progress {
        display: grid;
        gap: 9px;
    }

    .mobile-progress-copy {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        color: #70798a;
        font-size: 0.74rem;
        font-weight: 730;
    }

    #mobile-step-name {
        overflow: hidden;
        color: var(--register-violet-dark);
        font-weight: 820;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-progress-track {
        height: 6px;
        overflow: hidden;
        border-radius: 999px;
        background: #ebeaf2;
    }

    .mobile-progress-fill {
        width: 25%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, #7554ff, #23b6c4);
        transition: width 220ms ease;
    }

    .register-main {
        padding: 21px 16px;
        border-radius: 23px;
    }

    .step-heading {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 11px;
        margin-bottom: 20px;
    }

    .step-heading-icon {
        width: 40px;
        height: 40px;
        border-radius: 13px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.13rem;
    }

    .section-description {
        font-size: 0.81rem;
    }

    .form-section {
        padding: 17px 14px;
        border-radius: 18px;
    }

    .form-row,
    .paid-package-grid,
    .package-skeleton-grid,
    .payment-trust {
        grid-template-columns: 1fr;
    }

    .form-row {
        gap: 0;
    }

    .form-group,
    .form-section > .form-group:last-child,
    .form-row:last-child .form-group {
        margin-bottom: 16px;
    }

    .form-section > .form-group:last-child,
    .form-row:last-child .form-group:last-child {
        margin-bottom: 0;
    }

    .password-requirements {
        grid-template-columns: 1fr;
    }

    .package-option {
        min-height: 0;
        padding: 15px;
        align-items: flex-start;
        gap: 10px;
    }

    .package-option-info {
        gap: 6px;
    }

    .package-option-price-wrap {
        margin-left: 0;
        padding-right: 5px;
        text-align: left;
    }

    .package-option::after {
        position: absolute;
        top: 16px;
        right: 15px;
    }

    .package-option-name-row {
        padding-right: 30px;
    }

    .package-option-price {
        font-size: 1rem;
    }

    .promo-section,
    .price-summary,
    .payment-method-card {
        padding: 16px 14px;
    }

    .promo-input-group {
        grid-template-columns: 1fr;
    }

    .promo-input-group button {
        width: 100%;
    }

    .payment-trust {
        gap: 8px;
    }

    .payment-trust span {
        justify-content: flex-start;
        padding: 2px 3px;
    }

    .btn-container {
        display: grid;
        grid-template-columns: 1fr 1.55fr;
        gap: 8px;
        margin-top: 20px;
    }

    .btn-container.three-actions {
        grid-template-columns: 1fr 1fr;
    }

    .btn-container.three-actions .btn-next {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .btn-back,
    .btn-next,
    .btn-pay {
        width: 100%;
        min-height: 48px;
        padding: 0 10px;
        font-size: 0.82rem;
    }
}

@media (max-width: 390px) {
    .register-page {
        padding-inline: 10px;
    }

    .register-main {
        padding-inline: 13px;
    }

    .register-brand-copy small {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .register-page *,
    .register-page *::before,
    .register-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
