/* Nexobiz Trial Onboarding — Step 4 Plan Selection */

.trial-onboard {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 40%, #f8fafc 100%);
    color: #0f172a;
    font-family: Inter, system-ui, -apple-system, sans-serif;
}

.trial-onboard__header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

.trial-onboard__header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.trial-onboard__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: #0f172a;
    text-decoration: none;
}

.trial-onboard__header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trial-onboard__header-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
}

.trial-onboard__header-link:hover { color: #2563eb; }

.trial-onboard__btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.trial-onboard__btn-ghost:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.trial-onboard__btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2563eb;
    background: #fff;
    border: 1.5px solid #2563eb;
    border-radius: 0.625rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.trial-onboard__btn-outline:hover {
    background: #eff6ff;
}

.trial-onboard__btn-outline--block { width: 100%; }

.trial-onboard__btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 0.625rem;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.trial-onboard__btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.trial-onboard__btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.trial-onboard__btn-primary--lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    white-space: nowrap;
}

.trial-onboard__main {
    flex: 1;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 8rem;
}

/* Stepper */
.trial-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem 0;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.trial-stepper__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    min-width: 4.5rem;
}

.trial-stepper__dot {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    border: 2px solid #cbd5e1;
    background: #fff;
    color: #94a3b8;
}

.trial-stepper__item--done .trial-stepper__dot {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.trial-stepper__item--active .trial-stepper__dot {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.trial-stepper__label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    max-width: 5.5rem;
    line-height: 1.2;
}

.trial-stepper__item--active .trial-stepper__label { color: #2563eb; }
.trial-stepper__item--done .trial-stepper__label { color: #334155; }

.trial-stepper__line {
    width: 2rem;
    height: 2px;
    background: #cbd5e1;
    margin: 0 0.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .trial-stepper__line { width: 3.5rem; }
    .trial-stepper__label { font-size: 0.75rem; max-width: 6.5rem; }
}

/* Layout */
.trial-onboard__layout {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .trial-onboard__layout {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
        align-items: start;
    }
}

/* Sidebar */
.trial-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trial-sidebar__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.trial-sidebar__card--progress {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border-color: #bfdbfe;
}

.trial-sidebar__card--trust {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-color: #bbf7d0;
}

.trial-sidebar__card--support {
    background: #fff;
}

.trial-sidebar__eyebrow {
    margin: 0 0 0.375rem;
    font-size: 1rem;
    font-weight: 800;
    color: #1e40af;
}

.trial-sidebar__text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #475569;
}

.trial-sidebar__progress-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2563eb;
}

.trial-sidebar__progress-bar {
    margin-top: 0.375rem;
    height: 6px;
    background: #dbeafe;
    border-radius: 999px;
    overflow: hidden;
}

.trial-sidebar__progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 999px;
}

.trial-sidebar__card-title {
    margin: 0 0 0.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}

.trial-sidebar__summary {
    margin: 0;
    display: grid;
    gap: 0.625rem;
}

.trial-sidebar__summary div {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.trial-sidebar__summary dt {
    margin: 0;
    color: #64748b;
    font-weight: 500;
}

.trial-sidebar__summary dd {
    margin: 0;
    color: #0f172a;
    font-weight: 600;
    text-align: right;
}

.trial-sidebar__edit {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.trial-sidebar__trust-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.625rem;
}

.trial-sidebar__trust-list {
    margin: 0 0 0.75rem;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    color: #334155;
    line-height: 1.6;
}

.trial-sidebar__trust-list li {
    position: relative;
    padding-left: 1rem;
}

.trial-sidebar__trust-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
}

.trial-sidebar__learn {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #16a34a;
    text-decoration: none;
}

.trial-sidebar__support-hours {
    margin: 0.625rem 0 0;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
}

/* Plans area */
.trial-plans-area__head {
    margin-bottom: 1.5rem;
}

.trial-plans-area__head h1 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.trial-plans-area__head > p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.trial-plans-area__trust-line {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0.75rem 0 0;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #475569;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
}

/* Plan grid */
.trial-plan-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .trial-plan-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.trial-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem 1.25rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.trial-plan-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}

.trial-plan-card.is-selected {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 12px 32px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.trial-plan-card--featured {
    border-color: #93c5fd;
}

.trial-plan-card--featured.is-selected {
    border-color: #2563eb;
}

.trial-plan-card--enterprise {
    border-color: #fde68a;
}

.trial-plan-card--enterprise.is-selected {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15), 0 12px 32px rgba(245, 158, 11, 0.12);
}

.trial-plan-card__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.trial-plan-card__badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
}

.trial-plan-card__badge--flexible {
    background: #f1f5f9;
    color: #475569;
}

.trial-plan-card__badge--recommended {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.trial-plan-card__badge--enterprise {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.trial-plan-card__name {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
}

.trial-plan-card__price {
    margin-top: 0.75rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.trial-plan-card__price-amount {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1;
}

.trial-plan-card__price-suffix {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.trial-plan-card__billing {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    color: #94a3b8;
}

.trial-plan-card__tagline {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
    min-height: 2.5rem;
}

.trial-plan-card__features {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    flex: 1;
}

.trial-plan-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #334155;
    margin-bottom: 0.5rem;
}

.trial-plan-card__features svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #22c55e;
}

.trial-plan-card__modules {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.trial-plan-card__modules-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 0.625rem;
}

.trial-module-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
}

.trial-module-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    text-align: center;
}

.trial-module-tile span {
    font-size: 0.625rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.2;
}

.trial-module-tile__icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #2563eb;
}

.trial-plan-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.625rem;
    border: 1.5px solid #cbd5e1;
    color: #334155;
    background: #fff;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.trial-plan-card.is-selected .trial-plan-card__cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-color: transparent;
    color: #fff;
}

.trial-plan-card--enterprise.is-selected .trial-plan-card__cta {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* What happens next */
.trial-next-steps {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.trial-next-steps h2 {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.trial-next-steps__grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .trial-next-steps__grid {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: start;
        gap: 0.5rem;
    }
}

.trial-next-steps__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.trial-next-steps__item strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
}

.trial-next-steps__item span:last-child {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

.trial-next-steps__icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.375rem;
    border-radius: 50%;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-next-steps__arrow {
    display: none;
    color: #cbd5e1;
    font-size: 1.25rem;
    padding-top: 0.5rem;
}

@media (min-width: 768px) {
    .trial-next-steps__arrow { display: block; }
}

/* Sticky CTA */
.trial-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
    padding: 1rem 1.5rem 0.75rem;
}

.trial-sticky-cta__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 900px) {
    .trial-sticky-cta__inner {
        grid-template-columns: 1.2fr 1fr auto;
        gap: 1.5rem;
    }
}

.trial-sticky-cta__trial-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.trial-sticky-cta__shield {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-sticky-cta__trial-info strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f172a;
}

.trial-sticky-cta__benefits {
    margin: 0.25rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: #64748b;
}

.trial-sticky-cta__benefits li::before {
    content: '✓ ';
    color: #22c55e;
    font-weight: 700;
}

.trial-sticky-cta__selection {
    text-align: center;
}

@media (min-width: 900px) {
    .trial-sticky-cta__selection { text-align: left; }
}

.trial-sticky-cta__selection-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}

.trial-sticky-cta__selection strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.trial-sticky-cta__selection span:last-child {
    font-size: 0.8125rem;
    color: #64748b;
}

.trial-sticky-cta__note {
    max-width: 1280px;
    margin: 0.5rem auto 0;
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Trust footer */
.trial-trust-footer {
    border-top: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.875rem 1.5rem;
    margin-top: auto;
}

.trial-trust-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    font-size: 0.75rem;
    color: #64748b;
}

.trial-trust-footer__inner span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.trial-trust-footer__inner a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

/* Alerts & empty state */
.trial-alert {
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.trial-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.trial-alert ul {
    margin: 0.5rem 0 0 1.25rem;
    padding: 0;
}

.trial-field-error {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    color: #dc2626;
    font-weight: 500;
}

.trial-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
}

.trial-empty-state__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-empty-state h2 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.trial-empty-state p {
    margin: 0;
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 28rem;
    margin-inline: auto;
}

.trial-empty-state__ref {
    margin-top: 0.75rem !important;
    font-size: 0.75rem !important;
    font-family: ui-monospace, monospace;
    color: #94a3b8 !important;
}

.trial-empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Mobile sidebar order */
@media (max-width: 1023px) {
    .trial-onboard__layout {
        display: flex;
        flex-direction: column;
    }

    .trial-sidebar { order: 2; }
    .trial-plans-area { order: 1; }

    .trial-sidebar__card--progress,
    .trial-sidebar__card--support {
        display: none;
    }
}

@media (max-width: 899px) {
    .trial-sticky-cta__inner {
        grid-template-columns: 1fr;
    }

    .trial-sticky-cta__trial-info { display: none; }

    .trial-onboard__main {
        padding-bottom: 7rem;
    }
}

/* Step 5 — email verification (light marketing form) */
.trial-email-verification {
    margin: 0 0 1.25rem;
    padding: 1.125rem 1.25rem;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
}

.trial-email-verification__title {
    margin: 0 0 0.35rem;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.trial-email-verification__hint {
    margin: 0 0 1rem;
    font-size: 13px;
    line-height: 1.55;
    color: #64748b;
}

.trial-email-verification__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.trial-email-verification__send-btn,
.trial-email-verification__confirm-btn {
    width: auto;
    min-width: 0;
    padding: 0.55rem 1rem;
    font-size: 13px;
}

.trial-email-verification__send-status {
    font-size: 13px;
    color: #64748b;
}

.trial-email-verification__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.75rem;
}

.trial-email-verification__status {
    font-size: 13px;
    color: #64748b;
}

.trial-email-verification__status.is-verified {
    color: #059669;
    font-weight: 600;
}

.trial-email-verification__code-input {
    letter-spacing: 0.25em;
    font-weight: 700;
    text-align: center;
    max-width: 12rem;
}

.trial-step5-form-divider {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.mkt-btn-success:disabled,
.mkt-btn-success[disabled] {
    background: #cbd5e1;
    color: #64748b;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
}

.mkt-btn-success:disabled:hover,
.mkt-btn-success[disabled]:hover {
    background: #cbd5e1;
}

/* Step 5 — Review & Launch */
.trial-alert--info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
}

.trial-launch-area__head {
    margin-bottom: 1.5rem;
}

.trial-launch-area__head h1 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.trial-launch-area__head p {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

.trial-launch-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
    .trial-launch-panel { padding: 2rem; }
}

.trial-launch-plan-banner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 0.875rem;
    border: 1px solid #bfdbfe;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
}

.trial-launch-plan-banner__icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: #2563eb;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-launch-plan-banner__label {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0f172a;
}

.trial-launch-plan-banner__desc {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #475569;
}

.trial-launch-form__grid {
    display: grid;
    gap: 1.5rem 2rem;
}

@media (min-width: 900px) {
    .trial-launch-form__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.trial-field {
    display: block;
    margin-bottom: 1rem;
}

.trial-field__label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
}

.trial-field__input {
    display: block;
    width: 100%;
    padding: 0.7rem 0.875rem;
    border-radius: 0.625rem;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    font: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.trial-field__input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.trial-field__input[readonly] {
    background: #f8fafc;
    color: #475569;
}

.trial-field__hint {
    margin: -0.5rem 0 0.75rem;
    font-size: 0.75rem;
    color: #64748b;
}

.trial-field__error {
    margin: -0.35rem 0 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #dc2626;
}

.trial-field__password-wrap {
    position: relative;
    display: block;
}

.trial-field__password-wrap .trial-field__input {
    padding-right: 2.75rem;
}

.trial-field__toggle-pw {
    position: absolute;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
}

.trial-field__toggle-pw:hover { color: #2563eb; }

.trial-email-verification--premium {
    margin-top: 0.25rem;
}

.trial-email-verification__status.is-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #059669;
}

.trial-otp-inputs {
    display: flex;
    gap: 0.5rem;
    margin: 0.375rem 0 1rem;
}

.trial-otp-input {
    width: 2.75rem;
    height: 3rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 0.625rem;
    border: 1.5px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
}

.trial-otp-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.trial-password-strength {
    margin: -0.35rem 0 0.75rem;
}

.trial-password-strength__bar {
    height: 5px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.trial-password-strength__bar span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: #ef4444;
    transition: width 0.2s, background 0.2s;
}

.trial-password-strength__bar span[data-level="fair"] { background: #f59e0b; }
.trial-password-strength__bar span[data-level="good"] { background: #3b82f6; }
.trial-password-strength__bar span[data-level="strong"] { background: #10b981; }

.trial-password-strength__label {
    margin: 0.375rem 0 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}

.trial-password-rules {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.375rem;
}

.trial-password-rules li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.trial-password-rules li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
    border: 1.5px solid #cbd5e1;
    background: #fff;
}

.trial-password-rules li.is-met {
    color: #059669;
    font-weight: 600;
}

.trial-password-rules li.is-met::before {
    border-color: #10b981;
    background: #10b981;
    box-shadow: inset 0 0 0 2px #fff;
}

.trial-launch-google-note {
    padding: 1rem 1.125rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
}

.trial-launch-google-note p { margin: 0; }
.trial-launch-google-note p + p { margin-top: 0.375rem; }

.trial-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin: 1.25rem 0 1rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #475569;
    cursor: pointer;
}

.trial-consent input {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: #2563eb;
}

.trial-consent a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.trial-consent a:hover { text-decoration: underline; }

.trial-launch-submit {
    width: 100%;
    padding: 0.9375rem 1.5rem;
    font-size: 1rem;
}

.trial-launch-login-link {
    margin: 0.875rem 0 0;
    text-align: center;
    font-size: 0.8125rem;
    color: #64748b;
}

.trial-launch-login-link a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.trial-launch-after {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid #e2e8f0;
}

.trial-launch-after h2 {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.trial-launch-after__grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .trial-launch-after__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.trial-launch-after__grid article {
    padding: 1rem;
    border-radius: 0.875rem;
    border: 1px solid #f1f5f9;
    background: #fafbfc;
}

.trial-launch-after__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.625rem;
}

.trial-launch-after__grid h3 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0f172a;
}

.trial-launch-after__grid p {
    margin: 0.375rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}

.trial-launch-plan-card__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.625rem;
}

.trial-launch-plan-card__name {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.trial-launch-plan-card__tagline {
    margin: 0.25rem 0 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
}

.trial-launch-help-link {
    display: block;
    margin-top: 0.75rem;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.trial-launch-trust-strip {
    margin-top: auto;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    padding: 1rem 1.5rem 1.5rem;
}

.trial-launch-trust-strip__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.trial-launch-trust-strip ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.trial-launch-trust-strip li {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
}

.trial-launch-trust-strip a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.trial-launch-trust-strip a:hover { text-decoration: underline; }

[data-trial-launch-step] .trial-onboard__main {
    padding-bottom: 2rem;
}
