/**
 * RiskAss Trial Signup 2026 - Styles
 * All selectors scoped under .trial-2026
 */

/* =============================================
   RESET & VARIABLES
   ============================================= */
.trial-2026 {
    --dark: #1B1B1B;
    --accent-blue: #3B82F6;
    --accent-blue-light: #93C5FD;
    --accent-blue-dark: #2563EB;
    --text-primary: #1B1B1B;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --bg-white: #ffffff;
    --bg-light: #F9FAFB;
    --bg-panel: #F7F8FA;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --success: #10B981;
    --error: #EF4444;
    --hero-gradient: linear-gradient(135deg, #FFFBF0 0%, #FFF5E6 15%, #E6F4FF 35%, #CCE7FF 50%, #B3DCFF 65%, #FFE6CC 85%, #FFF9F0 100%);

    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    color: var(--text-primary);
}

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

/* Full-width: works in both Canvas Empty and regular WP templates */
.trial-2026 {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* =============================================
   SPLIT LAYOUT
   ============================================= */
.trial-2026 .trial-page {
    display: flex;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* =============================================
   LEFT SIDEBAR
   ============================================= */
.trial-2026 .trial-hero {
    width: 420px;
    flex-shrink: 0;
    background: var(--hero-gradient);
    color: var(--text-primary);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.trial-2026 .trial-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.15);
    pointer-events: none;
}

.trial-2026 .hero-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.trial-2026 .hero-logo-icon img {
    height: 36px;
    width: auto;
}

.trial-2026 .hero-logo-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.trial-2026 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    width: fit-content;
    color: var(--accent-blue-dark);
}

.trial-2026 .hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: trial2026-pulse 2s infinite;
}

@keyframes trial2026-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.trial-2026 .hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.trial-2026 .hero-subtitle {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.trial-2026 .hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.trial-2026 .hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.6);
    transition: background 0.2s;
}

.trial-2026 .hero-feature:hover {
    background: rgba(255,255,255,0.7);
}

.trial-2026 .hero-feature-icon {
    width: 34px;
    height: 34px;
    background: var(--dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trial-2026 .hero-feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 1.8;
}

.trial-2026 .hero-feature-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.trial-2026 .hero-feature-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
}

.trial-2026 .hero-copyright {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
    text-align: center;
}

.trial-2026 .hero-copyright p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 2px 0;
    line-height: 1.4;
}

/* =============================================
   MOBILE HEADER
   ============================================= */
.trial-2026 .mobile-header {
    display: none;
    background: var(--hero-gradient);
    padding: 10px 16px;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trial-2026 .mobile-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trial-2026 .mobile-header-logo img {
    height: 32px;
    width: auto;
}

.trial-2026 .mobile-header-logo-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
}

/* =============================================
   RIGHT PANEL
   ============================================= */
.trial-2026 .trial-form-panel {
    flex: 1;
    padding: 40px 56px;
    overflow-y: auto;
    background: var(--bg-panel);
}

.trial-2026 .form-container {
    max-width: 640px;
    margin: 0 auto;
}

/* =============================================
   STEP INDICATOR
   ============================================= */
.trial-2026 .form-steps {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    background: white;
    border-radius: 14px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.trial-2026 .form-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    white-space: nowrap;
}

.trial-2026 .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    background: var(--border);
    color: var(--text-muted);
    transition: all 0.3s;
    flex-shrink: 0;
}

.trial-2026 .form-step.active .step-number {
    background: var(--dark);
    color: white;
    box-shadow: 0 2px 6px rgba(27,27,27,0.2);
}

.trial-2026 .form-step.completed .step-number {
    background: var(--success);
    color: white;
}

.trial-2026 .step-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
}

.trial-2026 .form-step.active .step-label {
    color: var(--text-primary);
    font-weight: 600;
}

.trial-2026 .form-step.completed .step-label {
    color: var(--text-secondary);
}

.trial-2026 .step-connector {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 10px;
    border-radius: 1px;
    min-width: 20px;
}

.trial-2026 .step-connector.filled {
    background: var(--success);
}

/* =============================================
   STEP CONTENT
   ============================================= */
.trial-2026 .step-content {
    display: none;
    animation: trial2026-fadeIn 0.3s ease;
}

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

@keyframes trial2026-fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.trial-2026 .step-header {
    margin-bottom: 24px;
}

.trial-2026 .step-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    margin-top: 0;
    padding: 0;
    border: none;
}

.trial-2026 .step-header p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   CARDS
   ============================================= */
.trial-2026 .card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.trial-2026 .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.trial-2026 .card-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trial-2026 .card-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke-width: 1.8;
}

.trial-2026 .card-icon.blue { background: #EFF6FF; }
.trial-2026 .card-icon.blue svg { stroke: var(--accent-blue); }
.trial-2026 .card-icon.green { background: #ECFDF5; }
.trial-2026 .card-icon.green svg { stroke: #059669; }
.trial-2026 .card-icon.purple { background: #F5F3FF; }
.trial-2026 .card-icon.purple svg { stroke: #7C3AED; }
.trial-2026 .card-icon.orange { background: #FFF7ED; }
.trial-2026 .card-icon.orange svg { stroke: #EA580C; }

.trial-2026 .card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.trial-2026 .card-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* =============================================
   FORM FIELDS
   ============================================= */
.trial-2026 .field-group {
    margin-bottom: 14px;
}

.trial-2026 .field-group:last-child {
    margin-bottom: 0;
}

.trial-2026 .field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.trial-2026 .field-label .req {
    color: var(--error);
    margin-left: 2px;
}

.trial-2026 .field-input {
    width: 100%;
    padding: 9px 13px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 9px;
    transition: all 0.15s ease;
    outline: none;
}

.trial-2026 .field-input:hover {
    border-color: #D1D5DB;
}

.trial-2026 .field-input:focus {
    background: white;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.trial-2026 .field-input::placeholder {
    color: var(--text-muted);
}

.trial-2026 .field-input.prefilled {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.trial-2026 .field-input.needs-attention {
    background: #FFFBEB;
    border-color: #FDE68A;
}

.trial-2026 .field-input.field-error {
    border-color: #EF4444;
    background: #FEF2F2;
}

.trial-2026 .field-error-msg {
    font-size: 11px;
    color: #DC2626;
    margin-top: 3px;
}

.trial-2026 .field-input.field-warning {
    border-color: #F59E0B;
    background: #FFFBEB;
}

.trial-2026 .field-warning-msg {
    font-size: 11px;
    color: #B45309;
    margin-top: 3px;
}

.trial-2026 .field-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 3px;
}

.trial-2026 .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* =============================================
   SEARCH ROW
   ============================================= */
.trial-2026 .search-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.trial-2026 .search-row .field-group {
    margin-bottom: 0;
}

.trial-2026 .search-row .field-input {
    margin-bottom: 0;
}

.trial-2026 .search-row .autocomplete-wrap {
    margin-bottom: 0;
}

.trial-2026 .search-row .btn {
    white-space: nowrap;
    padding: 9px 24px;
    border: 1.5px solid transparent;
}

/* =============================================
   AUTOCOMPLETE
   ============================================= */
.trial-2026 .autocomplete-wrap {
    position: relative;
}

.trial-2026 .autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    margin-top: 4px;
    display: none;
}

.trial-2026 .autocomplete-dropdown.visible {
    display: block;
}

.trial-2026 .autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    transition: background 0.1s;
}

.trial-2026 .autocomplete-item:last-child {
    border-bottom: none;
}

.trial-2026 .autocomplete-item:hover {
    background: var(--bg-light);
}

.trial-2026 .autocomplete-item small {
    color: var(--text-muted);
    margin-left: 4px;
}

/* =============================================
   SEARCH RESULTS
   ============================================= */
.trial-2026 .search-results {
    margin-top: 16px;
}

.trial-2026 .search-results-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.trial-2026 .result-card {
    padding: 14px 16px;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trial-2026 .result-card:hover {
    border-color: var(--accent-blue);
    background: #F8FAFF;
}

.trial-2026 .result-card.selected {
    border-color: var(--success);
    background: #F0FDF4;
}

.trial-2026 .result-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 2px 0;
}

.trial-2026 .result-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.trial-2026 .result-rui {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-blue);
    background: #EFF6FF;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

/* =============================================
   SKIP LINK
   ============================================= */
.trial-2026 .manual-entry-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: white;
    border: 1.5px dashed var(--border);
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s;
    user-select: none;
}

.trial-2026 .manual-entry-link:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.trial-2026 .manual-entry-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

/* =============================================
   COMPANY TAGS
   ============================================= */
.trial-2026 .company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.trial-2026 .company-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-blue-dark);
}

.trial-2026 .company-tag-remove {
    cursor: pointer;
    opacity: 0.5;
    display: flex;
    transition: opacity 0.2s;
}

.trial-2026 .company-tag-remove:hover {
    opacity: 1;
}

.trial-2026 .company-tag-remove svg {
    width: 12px;
    height: 12px;
    stroke: var(--accent-blue-dark);
    fill: none;
    stroke-width: 2.5;
}

/* =============================================
   NAVIGATION
   ============================================= */
.trial-2026 .step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.trial-2026 .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.trial-2026 .btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke-width: 2;
}

.trial-2026 .btn-primary {
    background: var(--dark);
    color: white;
}

.trial-2026 .btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27,27,27,0.2);
}

.trial-2026 .btn-primary:disabled {
    background: #D1D5DB;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.trial-2026 .btn-primary svg {
    stroke: white;
}

.trial-2026 .btn-secondary {
    background: white;
    color: var(--text-secondary);
    border: 1.5px solid var(--border);
}

.trial-2026 .btn-secondary:hover {
    background: var(--bg-light);
    border-color: #D1D5DB;
}

.trial-2026 .btn-secondary svg {
    stroke: var(--text-secondary);
}

.trial-2026 .btn-success {
    background: var(--dark);
    color: white;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(27,27,27,0.15);
    transition: all 0.3s ease;
}

.trial-2026 .btn-success:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(59,130,246,0.4), 0 4px 12px rgba(27,27,27,0.15);
}

.trial-2026 .btn-success:disabled {
    background: #D1D5DB;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.trial-2026 .btn-success svg {
    stroke: white;
    width: 20px;
    height: 20px;
}

.trial-2026 .btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 12px;
}

/* =============================================
   SUMMARY
   ============================================= */
.trial-2026 .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 6px;
}

.trial-2026 .summary-item {
    padding: 8px 10px;
    background: var(--bg-light);
    border-radius: 6px;
    min-width: 0;
    overflow: hidden;
}

.trial-2026 .summary-item label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block;
}

.trial-2026 .summary-item p {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    margin: 1px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trial-2026 .trial-includes-bar {
    display: flex;
    gap: 14px;
    margin-top: 12px;
    font-size: 12px;
    color: #047857;
    flex-wrap: wrap;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 8px;
    padding: 8px 14px;
}

.trial-2026 .trial-include-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trial-2026 .trial-include-item svg {
    width: 13px;
    height: 13px;
    stroke: var(--success);
    fill: none;
    stroke-width: 2.5;
}

/* =============================================
   MESSAGES
   ============================================= */
.trial-2026 .msg {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    display: none;
}

.trial-2026 .msg.visible {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trial-2026 .msg svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: none;
    stroke-width: 2;
}

.trial-2026 .msg-info {
    background: #EFF6FF;
    color: var(--accent-blue-dark);
    border: 1px solid #BFDBFE;
}

.trial-2026 .msg-info svg { stroke: var(--accent-blue); }

.trial-2026 .msg-error {
    background: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}

.trial-2026 .msg-error svg { stroke: var(--error); }

.trial-2026 .msg-success {
    background: #F0FDF4;
    color: #065F46;
    border: 1px solid #BBF7D0;
}

.trial-2026 .msg-success svg { stroke: var(--success); }

/* =============================================
   LOADING / SPINNER
   ============================================= */
.trial-2026 .loading {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
}

.trial-2026 .loading.visible {
    display: flex;
}

.trial-2026 .loading-text {
    font-size: 13px;
    color: var(--text-muted);
}

.trial-2026 .spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: trial2026-spin 0.6s linear infinite;
}

.trial-2026 .spinner-sm {
    width: 14px;
    height: 14px;
    border: 2px solid var(--border);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: trial2026-spin 0.6s linear infinite;
}

@keyframes trial2026-spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   HELP
   ============================================= */
.trial-2026 .form-help {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.trial-2026 .form-help a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
}

.trial-2026 .form-help a:hover {
    text-decoration: underline;
}

/* =============================================
   PROGRESS MODAL
   ============================================= */
.trial-2026 .trial-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trial-2026 .trial-modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.trial-2026 .progress-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.trial-2026 .progress-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.trial-2026 .progress-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trial-2026 .progress-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trial-2026 .progress-step .step-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trial-2026 .progress-step .step-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.trial-2026 .progress-step.done .step-icon::after {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.trial-2026 .progress-step.done .spinner-sm {
    display: none;
}

.trial-2026 .progress-step.done .step-text {
    color: var(--text-primary);
    font-weight: 500;
}

.trial-2026 .progress-step.error .step-icon::after {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--error);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.trial-2026 .progress-step.error .spinner-sm {
    display: none;
}

.trial-2026 .progress-step.error .step-text {
    color: var(--error);
    font-weight: 500;
}

.trial-2026 .progress-error {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.trial-2026 .progress-error p {
    font-size: 13px;
    color: var(--error);
    margin-bottom: 12px;
}

/* =============================================
   SUCCESS SCREEN
   ============================================= */
.trial-2026 .trial-success-screen {
    text-align: center;
    padding: 60px 20px;
    max-width: 480px;
    margin: 0 auto;
}

.trial-2026 .success-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--success);
    fill: none;
    stroke-width: 1.5;
}

.trial-2026 .trial-success-screen h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 20px 0 8px;
}

.trial-2026 .trial-success-screen p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 4px;
}

.trial-2026 .success-email {
    font-weight: 600;
    color: var(--accent-blue) !important;
    font-size: 16px !important;
    margin-bottom: 28px !important;
}

.trial-2026 .trial-success-screen .btn {
    margin-top: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .trial-2026 .trial-page {
        display: block;
    }

    .trial-2026 .trial-hero {
        display: none;
    }

    .trial-2026 .mobile-header {
        display: block;
    }

    .trial-2026 .trial-form-panel {
        padding: 24px 20px;
        overflow-y: visible;
        height: auto;
    }

    .trial-2026 .form-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .trial-2026 .field-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .trial-2026 .summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trial-2026 .search-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .trial-2026 .search-row .btn {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .trial-2026 .trial-form-panel {
        padding: 16px 14px;
    }

    .trial-2026 .card {
        padding: 16px 14px;
    }

    .trial-2026 .card-header {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .trial-2026 .field-group {
        margin-bottom: 10px;
    }

    .trial-2026 .field-label {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .trial-2026 .field-input {
        padding: 8px 11px;
        font-size: 13px;
    }

    .trial-2026 .form-steps {
        padding: 8px 12px;
        overflow-x: auto;
    }

    .trial-2026 .step-label {
        font-size: 11px;
    }

    .trial-2026 .step-number {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .trial-2026 .step-connector {
        min-width: 12px;
        margin: 0 6px;
    }

    .trial-2026 .step-header {
        margin-bottom: 16px;
    }

    .trial-2026 .step-header h2 {
        font-size: 20px;
    }

    .trial-2026 .step-header p {
        font-size: 13px;
    }

    .trial-2026 .btn-success {
        padding: 12px 32px;
        font-size: 15px;
    }

    .trial-2026 .step-nav {
        margin-top: 16px;
        padding-top: 14px;
    }

    .trial-2026 .manual-entry-link {
        padding: 10px;
        font-size: 12px;
    }

    .trial-2026 .form-help {
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .trial-2026 .field-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trial-2026 .search-row {
        grid-template-columns: 1fr;
    }

    .trial-2026 .summary-grid {
        grid-template-columns: 1fr;
    }

    .trial-2026 .mobile-header-logo-text {
        font-size: 12px;
    }
}
