/* ============================================================
   SIGNUP PAGE — Enterprise-grade UX (2026-02-26)
   Matches the style system used by pricing (assets/styles.css)
   ============================================================ */

:root {
    --primary-navy: #0D2C54;
    --secondary-slate: #6C7A89;
    --accent-gold: #FFB700;
    --neutral-off-white: #F8F9FA;
    --neutral-white: #FFFFFF;
    --neutral-dark: #212529;
    --border-soft: #E0E4E8;
    --shadow-soft: 0 4px 16px rgba(13, 44, 84, 0.08);
    --shadow-strong: 0 12px 40px rgba(13, 44, 84, 0.16);
}

.hidden {
    display: none !important;
}

/* Header: seamless hero */
.header {
    border-bottom: none;
}

/* Hero */
.signup-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1A365D 100%);
    color: #fff;
    text-align: center;
    padding: 76px 0 44px;
    position: relative;
    overflow: hidden;
}

.signup-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 320px at 15% 20%, rgba(255, 183, 0, 0.16), transparent 60%),
        radial-gradient(720px 260px at 85% 25%, rgba(255, 215, 0, 0.10), transparent 62%),
        radial-gradient(520px 240px at 55% 110%, rgba(255, 183, 0, 0.10), transparent 65%);
    opacity: 0.95;
}

.signup-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 183, 0, 0.55) 25%, rgba(255, 183, 0, 0.10) 55%, transparent 100%);
    opacity: 0.9;
}

.signup-hero .container {
    position: relative;
    z-index: 1;
}

.signup-hero h1 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: clamp(2.1rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #fff;
}

.signup-hero__subtitle {
    font-size: clamp(1rem, 1.7vw, 1.15rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Shell */
.signup-shell {
    background: var(--neutral-off-white);
    padding: 0 0 80px;
    margin-top: -28px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.signup-shell::before,
.signup-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    opacity: 0.9;
}

.signup-shell::before {
    width: 680px;
    height: 680px;
    left: -360px;
    top: 40px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 183, 0, 0.12), transparent 62%);
}

.signup-shell::after {
    width: 760px;
    height: 760px;
    right: -420px;
    top: -60px;
    background: radial-gradient(circle at 70% 35%, rgba(13, 44, 84, 0.10), transparent 64%);
}

.signup-shell .container {
    position: relative;
    z-index: 1;
}

.signup-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
    padding-top: 28px;
}

.signup-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 28px;
    position: relative;
}

.signup-card::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 183, 0, 0.0), rgba(255, 183, 0, 0.75), rgba(255, 215, 0, 0.18), rgba(255, 183, 0, 0.0));
    opacity: 0.9;
    pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
    .signup-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .signup-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-strong);
        border-color: rgba(224, 228, 232, 0.75);
    }
}

/* Messages */
.signup-message {
    text-align: center;
    padding: 20px 12px 6px;
}

.signup-message__icon {
    color: var(--secondary-slate);
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(108, 122, 137, 0.08);
}

.signup-message__icon--warn {
    color: #B45309;
    background: rgba(245, 158, 11, 0.12);
}

.signup-message__title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
}

.signup-message__desc {
    color: var(--secondary-slate);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 16px;
    max-width: 560px;
}

/* Alerts */
.signup-alert {
    border: 1px solid rgba(245, 158, 11, 0.35);
    background: rgba(245, 158, 11, 0.08);
    color: #7C2D12;
    border-radius: 12px;
    padding: 12px 14px;
    margin: 12px 0 18px;
    font-weight: 600;
    line-height: 1.5;
}

/* Form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ws-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ws-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1F2937;
}

.ws-input {
    width: 100%;
    border: 1.5px solid var(--border-soft);
    border-radius: 10px;
    background: #F8F9FA;
    padding: 12px 14px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    color: var(--primary-navy);
    font-family: var(--font-body, 'Inter', sans-serif);
}

.ws-input::placeholder {
    color: #9CA3AF;
}

.ws-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.12);
}

.ws-input.is-invalid {
    border-color: #B91C1C;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.10);
}

.ws-input.is-valid {
    border-color: #10B981;
    background: #fff;
}

.ws-input.is-readonly {
    background: rgba(108, 122, 137, 0.08);
    cursor: not-allowed;
}

.ws-input.is-readonly:focus {
    border-color: var(--border-soft);
    box-shadow: none;
}

/* Email input action (lock/unlock) */
.ws-input-action-wrap {
    position: relative;
}

.ws-input-action-wrap .ws-input {
    padding-right: 46px;
}

html[dir="rtl"] .ws-input-action-wrap .ws-input {
    padding-right: 14px;
    padding-left: 46px;
}

.ws-input-action {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(108, 122, 137, 0.22);
    background: #fff;
    color: #475569;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.12s ease, border-color 0.15s ease;
}

html[dir="rtl"] .ws-input-action {
    right: auto;
    left: 10px;
}

.ws-input-action:hover {
    background: rgba(108, 122, 137, 0.08);
    border-color: rgba(108, 122, 137, 0.35);
}

.ws-input-action:active {
    transform: translateY(-50%) scale(0.98);
}

.ws-help--warn {
    color: #7C2D12;
    font-weight: 700;
}

/* Popover (tappable tooltip) */
.ws-popover {
    margin-top: 10px;
    border: 1px solid rgba(13, 44, 84, 0.14);
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 12px 14px;
}

.ws-popover__title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.ws-popover__text {
    color: var(--secondary-slate);
    line-height: 1.55;
    margin-bottom: 10px;
}

.ws-popover__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.ws-popover__btn {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 900;
    font-family: var(--font-heading, 'Poppins', sans-serif);
    cursor: pointer;
    border: 1px solid rgba(108, 122, 137, 0.22);
    background: #fff;
    color: var(--primary-navy);
    transition: background 0.15s ease, transform 0.12s ease;
}

.ws-popover__btn:hover {
    background: rgba(108, 122, 137, 0.08);
}

.ws-popover__btn:active {
    transform: translateY(1px);
}

.ws-popover__btn--ghost {
    background: #fff;
}

.ws-popover__btn--danger {
    border-color: rgba(185, 28, 28, 0.35);
    background: rgba(185, 28, 28, 0.06);
    color: #7F1D1D;
}

.ws-popover__btn--danger:hover {
    background: rgba(185, 28, 28, 0.10);
}

/* Prefill loading state */
.ws-prefill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0 0;
}

.ws-prefill__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 183, 0, 0.14) 0%, rgba(13, 44, 84, 0.06) 100%);
    border: 1px solid rgba(255, 183, 0, 0.25);
}

.ws-prefill__spinner {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 2px solid rgba(13, 44, 84, 0.20);
    border-top-color: rgba(13, 44, 84, 0.85);
    animation: wsSpin 0.9s linear infinite;
}

.ws-prefill__skeleton {
    width: 100%;
    max-width: 520px;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ws-prefill__line {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(108, 122, 137, 0.10) 0%, rgba(108, 122, 137, 0.22) 35%, rgba(108, 122, 137, 0.10) 70%);
    background-size: 200% 100%;
    animation: wsShimmer 1.4s ease-in-out infinite;
}

.ws-prefill__line--short {
    width: 70%;
}

@keyframes wsShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Prefill notice (polite info) */
.signup-notice {
    border: 1px solid rgba(13, 44, 84, 0.18);
    background: rgba(13, 44, 84, 0.04);
    color: rgba(13, 44, 84, 0.92);
    border-radius: 12px;
    padding: 12px 14px;
    margin: 12px 0 18px;
    font-weight: 700;
    line-height: 1.5;
}

.ws-error {
    min-height: 1em;
    font-size: 0.9rem;
    color: #B91C1C;
    line-height: 1.4;
}

.ws-help {
    font-size: 0.9rem;
    color: var(--secondary-slate);
    line-height: 1.5;
    margin: 0;
}

/* Password field */
.ws-password {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6b7280;
    background: transparent;
    border: none;
    padding: 6px;
    border-radius: 999px;
    line-height: 0;
}

.password-toggle:hover {
    color: #374151;
    background: rgba(108, 122, 137, 0.10);
}

/* Autocomplete dropdown */
.ws-autocomplete {
    position: relative;
}

.ws-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    max-height: 260px;
    overflow-y: auto;
    z-index: 50;
    padding: 6px;
}

.ws-dropdown > div {
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    color: #111827;
    transition: background 0.15s ease;
}

.ws-dropdown > div:hover {
    background: var(--neutral-off-white);
}

/* Stepper */
.ws-stepper {
    position: relative;
    display: flex;
    align-items: stretch;
}

.ws-stepper .ws-input {
    padding-right: 84px;
}

.ws-stepper__buttons {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ws-stepper__btn {
    width: 40px;
    border: 1px solid var(--border-soft);
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    color: #374151;
    transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
    display: grid;
    place-items: center;
}

.ws-stepper__btn:hover {
    background: var(--neutral-off-white);
    border-color: #D6DCE3;
}

.ws-stepper__btn:active {
    transform: translateY(1px);
}

#userCount {
    -moz-appearance: textfield;
    appearance: textfield;
}

#userCount::-webkit-outer-spin-button,
#userCount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#user-count-up:disabled,
#user-count-down:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* Checkbox + consent */
.ws-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.ws-check__box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid #CBD5E1;
    accent-color: var(--accent-gold);
    flex-shrink: 0;
}

.ws-check__label {
    font-size: 0.95rem;
    color: #374151;
    cursor: pointer;
    line-height: 1.5;
}

.ws-subcard {
    background: var(--neutral-off-white);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.ws-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ws-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(108, 122, 137, 0.06);
    border: 1px solid rgba(108, 122, 137, 0.14);
}

.ws-consent__text {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.55;
    cursor: pointer;
}

.ws-consent__text a,
.ws-terms a {
    color: var(--primary-navy);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ws-consent__text a:hover,
.ws-terms a:hover {
    color: var(--accent-gold);
}

.ws-terms {
    font-size: 0.92rem;
    color: var(--secondary-slate);
    line-height: 1.6;
    margin-top: 2px;
}

/* Buttons */
.signup-btn {
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 800;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
}

.signup-btn--full {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 18px;
}

.signup-btn--primary {
    background: var(--accent-gold);
    color: var(--primary-navy);
    box-shadow: 0 4px 16px rgba(255, 183, 0, 0.20);
}

.signup-btn--primary:hover {
    background: #E6A500;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255, 183, 0, 0.22);
}

.signup-btn:disabled,
.signup-btn[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.signup-btn__meta {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(13, 44, 84, 0.82);
}

/* Spinner */
.spinner {
    border: 2px solid rgba(13, 44, 84, 0.18);
    border-top: 2px solid rgba(13, 44, 84, 0.85);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: wsSpin 0.9s linear infinite;
}

@keyframes wsSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back link */
.signup-back {
    margin-top: 14px;
    text-align: center;
}

.signup-link {
    color: rgba(13, 44, 84, 0.75);
    text-decoration: none;
    font-weight: 600;
}

.signup-link:hover {
    color: var(--primary-navy);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Summary */
.signup-aside {
    position: relative;
}

.signup-summary {
    position: sticky;
    top: 140px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    padding: 20px;
    overflow: hidden;
}

.signup-summary::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(420px 220px at 85% 10%, rgba(255, 183, 0, 0.10), transparent 65%);
}

.signup-summary > * {
    position: relative;
    z-index: 1;
}

.signup-summary__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.signup-summary__title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-navy);
}

.signup-summary__change {
    background: rgba(255, 183, 0, 0.14);
    border: 1px solid rgba(255, 183, 0, 0.35);
    color: var(--primary-navy);
    font-weight: 800;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: var(--font-heading, 'Poppins', sans-serif);
}

.signup-summary__change:hover {
    background: rgba(255, 183, 0, 0.22);
}

.signup-summary__plan {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.2rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.35;
    margin-top: 4px;
}

.signup-summary__price {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-top: 10px;
}

.signup-summary__note {
    font-size: 0.9rem;
    color: var(--secondary-slate);
    line-height: 1.5;
    margin-top: 6px;
}

.signup-summary__meta {
    font-size: 0.9rem;
    color: #374151;
    margin-top: 12px;
    line-height: 1.6;
}

.signup-summary__divider {
    height: 1px;
    background: var(--border-soft);
    margin: 16px 0;
}

.signup-summary__trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup-summary__trust-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
}

.signup-summary__trust-item svg {
    flex-shrink: 0;
    color: #10B981;
    margin-top: 2px;
}

/* Trust strip (copied/adapted from pricing.css) */
.trust-strip {
    background: #fff;
    padding: 48px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.trust-strip__icon {
    color: var(--primary-navy);
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-strip__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-strip__text strong {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.trust-strip__text span {
    font-size: 0.86rem;
    color: var(--secondary-slate);
    line-height: 1.4;
}

/* Plan picker (content injected via JS) */
.signup-plan-picker {
    margin: 10px 0 18px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: linear-gradient(135deg, rgba(255, 183, 0, 0.08) 0%, rgba(13, 44, 84, 0.02) 100%);
}

.signup-plan-picker h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.sp-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.sp-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-soft);
    background: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    color: var(--primary-navy);
    font-family: var(--font-heading, 'Poppins', sans-serif);
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.sp-toggle.is-active {
    border-color: var(--primary-navy);
    box-shadow: 0 4px 16px rgba(13, 44, 84, 0.12);
}

.sp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sp-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 10px rgba(13, 44, 84, 0.06);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(13, 44, 84, 0.12);
}

.sp-card.is-selected {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 183, 0, 0.16);
}

.sp-card__name {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 800;
    color: var(--primary-navy);
    font-size: 1.05rem;
}

.sp-card__tagline {
    color: var(--secondary-slate);
    font-size: 0.9rem;
    line-height: 1.4;
}

.sp-card__price {
    margin-top: 6px;
    font-weight: 900;
    color: #111827;
    font-family: var(--font-heading, 'Poppins', sans-serif);
}

.sp-note {
    font-size: 0.9rem;
    color: var(--secondary-slate);
    margin-top: 10px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .signup-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .signup-summary {
        position: static;
        margin-bottom: 16px;
    }

    .sp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .signup-hero {
        padding: 64px 0 40px;
    }

    .signup-card {
        padding: 20px;
    }

    .ws-grid-2 {
        grid-template-columns: 1fr;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* RTL tweaks (Hebrew) */
html[dir="rtl"] .password-toggle {
    right: auto;
    left: 12px;
}

html[dir="rtl"] .ws-stepper .ws-input {
    padding-right: 14px;
    padding-left: 84px;
}

html[dir="rtl"] .ws-stepper__buttons {
    right: auto;
    left: 6px;
}

html[dir="rtl"] .ws-consent {
    flex-direction: row-reverse;
}

html[dir="rtl"] .trust-strip__item,
html[dir="rtl"] .signup-summary__trust-item {
    flex-direction: row-reverse;
}

@media (prefers-reduced-motion: reduce) {
    .signup-btn,
    .sp-card,
    .ws-stepper__btn {
        transition: none !important;
    }
}