



.cs-wizard {
    min-height: 100vh;
    background: linear-gradient(135deg, #00293C 0%, #001a28 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.cs-header {
    text-align: center;
    margin-bottom: 32px;
}

.cs-header h1 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.cs-header p {
    color: #8eaab8;
    font-size: 15px;
    margin: 0;
}



.cs-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cs-step-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cs-step-item.active .cs-step-num {
    background: #EC6E1E;
    color: #fff;
    box-shadow: 0 0 12px rgba(236, 110, 30, 0.4);
}

.cs-step-item.completed .cs-step-num {
    background: #10b981;
    color: #fff;
}

.cs-step-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.cs-step-item.active .cs-step-label {
    color: #fff;
}

.cs-step-item.completed .cs-step-label {
    color: #10b981;
}

.cs-step-connector {
    width: 32px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    margin: 0 8px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.cs-step-connector.completed {
    background: #10b981;
}



.cs-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 680px;
    overflow: hidden;
}

.cs-card-header {
    background: linear-gradient(135deg, rgba(236,110,30,0.08) 0%, transparent 100%);
    padding: 24px 32px;
    border-bottom: 1px solid #f0f0f0;
}

.cs-card-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #00293C;
    margin: 0 0 4px;
}

.cs-card-header p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.cs-card-body {
    padding: 32px;
}



.cs-step-content {
    display: none;
}

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



.cs-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.cs-plan-card {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.cs-plan-card:hover {
    border-color: #EC6E1E;
    box-shadow: 0 4px 12px rgba(236, 110, 30, 0.15);
}

.cs-plan-card.selected {
    border-color: #EC6E1E;
    background: rgba(236, 110, 30, 0.04);
}

.cs-plan-card.selected::after {
    content: '\2713';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #EC6E1E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.cs-plan-name {
    font-size: 16px;
    font-weight: 700;
    color: #00293C;
    margin-bottom: 8px;
}

.cs-plan-price {
    font-size: 22px;
    font-weight: 700;
    color: #EC6E1E;
    margin-bottom: 4px;
}

.cs-plan-price span {
    font-size: 13px;
    font-weight: 400;
    color: #9ca3af;
}

.cs-plan-token-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #166534;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-top: 6px;
    border: 1px solid #bbf7d0;
    letter-spacing: 0.2px;
}

.cs-plan-desc {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
    line-height: 1.5;
}

.cs-plan-features {
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.cs-plan-features li {
    font-size: 12px;
    color: #4b5563;
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cs-plan-features li::before {
    content: '\2713';
    color: #10b981;
    font-weight: 700;
    font-size: 11px;
}

.cs-plans-loading {
    text-align: center;
    padding: 40px;
    color: #9ca3af;
    font-size: 14px;
}

.cs-plan-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.cs-plan-highlight {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #4b5563;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 6px;
    padding: 6px 12px;
}

.cs-highlight-icon {
    font-size: 14px;
    flex-shrink: 0;
}



.cs-plan-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    background: #f9fafb;
}

.cs-plan-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.2s ease;
    position: relative;
}

.cs-plan-tab:first-child {
    border-right: 1px solid #e5e7eb;
}

.cs-plan-tab:hover {
    background: rgba(236, 110, 30, 0.04);
    color: #4b5563;
}

.cs-plan-tab.active {
    background: #fff;
    color: #EC6E1E;
    box-shadow: inset 0 -3px 0 #EC6E1E;
}

.cs-plan-tab-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.cs-plan-tab-label {
    white-space: nowrap;
}

.cs-plan-tab-desc {
    background: rgba(236, 110, 30, 0.04);
    border: 1px solid rgba(236, 110, 30, 0.12);
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
}

.cs-plan-tab-desc strong {
    color: #EC6E1E;
}



.cs-section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 28px 0 20px;
}

.cs-section-divider::before,
.cs-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.cs-section-divider-text {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}



.cs-service-grid {
    display: grid;
    gap: 12px;
}

.cs-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cs-service-item:hover {
    border-color: #d1d5db;
    background: #f9fafb;
}

.cs-service-item.selected {
    border-color: #EC6E1E;
    background: rgba(236, 110, 30, 0.04);
}

.cs-service-item.required {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.04);
    cursor: default;
}

.cs-service-item.included {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.04);
    cursor: default;
}

.cs-service-item.enterprise {
    border-color: #6b7280;
    background: rgba(107, 114, 128, 0.03);
    cursor: default;
    opacity: 0.6;
}

.cs-service-check {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: transparent;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.cs-service-item.selected .cs-service-check,
.cs-service-item.required .cs-service-check {
    background: #EC6E1E;
    border-color: #EC6E1E;
    color: #fff;
}

.cs-service-item.required .cs-service-check {
    background: #10b981;
    border-color: #10b981;
}

.cs-service-item.included .cs-service-check {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.cs-service-item.enterprise .cs-service-check {
    background: #6b7280;
    border-color: #6b7280;
    color: #fff;
}

.cs-service-info {
    flex: 1;
}

.cs-service-name {
    font-size: 14px;
    font-weight: 600;
    color: #00293C;
}

.cs-service-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 10px;
    text-decoration: none;
    margin-left: 6px;
    transition: all 0.2s ease;
    vertical-align: middle;
    letter-spacing: 0.3px;
}

.cs-service-link:hover {
    color: #fff;
    background: #EC6E1E;
    text-decoration: none;
}

.cs-service-link svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}

.cs-service-desc {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.cs-service-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.cs-service-badge.required {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.cs-service-badge.optional {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.cs-service-badge.included {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.cs-service-badge.enterprise {
    background: rgba(139, 92, 246, 0.12);
    color: #8b5cf6;
}



.cs-plan-token-extra {
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
    font-style: italic;
}



.cs-agb-checkbox-area {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.cs-agb-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.cs-agb-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cs-agb-checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 1px;
}

.cs-agb-checkmark::after {
    content: '\2713';
    font-size: 12px;
    font-weight: 700;
    color: transparent;
    transition: color 0.2s ease;
}

.cs-agb-input:checked ~ .cs-agb-checkmark {
    background: #EC6E1E;
    border-color: #EC6E1E;
}

.cs-agb-input:checked ~ .cs-agb-checkmark::after {
    color: #fff;
}

.cs-agb-input:focus ~ .cs-agb-checkmark {
    box-shadow: 0 0 0 3px rgba(236, 110, 30, 0.15);
}

.cs-agb-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.5;
}

.cs-agb-text .required {
    color: #ef4444;
}

.cs-agb-link {
    color: #EC6E1E;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.cs-agb-link:hover {
    color: #d4621a;
}



.cs-form-grid {
    display: grid;
    gap: 16px;
}

.cs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cs-form-group {
    display: flex;
    flex-direction: column;
}

.cs-form-group.full-width {
    grid-column: span 2;
}

.cs-form-label {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cs-form-label .required {
    color: #ef4444;
    margin-left: 2px;
}

.cs-form-optional {
    font-weight: 400;
    color: #9ca3af;
    font-size: 11px;
}

.cs-form-hint {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.4;
}
.cs-form-hint strong {
    color: #374151;
    font-weight: 600;
}

.cs-form-input {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #1f2937;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}

.cs-form-input:focus {
    border-color: #EC6E1E;
    box-shadow: 0 0 0 3px rgba(236, 110, 30, 0.1);
}

.cs-form-input::placeholder {
    color: #9ca3af;
}

.cs-form-select {
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #1f2937;
    outline: none;
    background: #fff;
    cursor: pointer;
}

.cs-form-select:focus {
    border-color: #EC6E1E;
    box-shadow: 0 0 0 3px rgba(236, 110, 30, 0.1);
}



.cs-domain-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(236, 110, 30, 0.06) 0%, rgba(236, 110, 30, 0.02) 100%);
    border: 1px solid rgba(236, 110, 30, 0.2);
    border-radius: 8px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.cs-domain-preview-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.cs-domain-preview-label {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
}

.cs-domain-preview-url {
    font-size: 14px;
    font-weight: 600;
    color: #EC6E1E;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    word-break: break-all;
}

.cs-domain-status {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    transition: color 0.2s ease;
}

.cs-domain-status.available {
    color: #10b981;
}

.cs-domain-status.taken {
    color: #ef4444;
}

.cs-domain-status.checking {
    color: #9ca3af;
    animation: cs-pulse 1.2s ease-in-out infinite;
}

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



.cs-code-section {
    text-align: center;
    padding: 20px 0;
}

.cs-code-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.cs-code-text {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.cs-code-email {
    font-weight: 700;
    color: #00293C;
}

.cs-code-inputs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.cs-code-digit {
    width: 48px;
    height: 56px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #00293C;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Consolas', 'Monaco', monospace;
}

.cs-code-digit:focus {
    border-color: #EC6E1E;
    box-shadow: 0 0 0 3px rgba(236, 110, 30, 0.15);
}

.cs-code-digit.filled {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.04);
}

.cs-resend-link {
    display: inline-block;
    font-size: 13px;
    color: #EC6E1E;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: underline;
    padding: 0;
}

.cs-resend-link:disabled {
    color: #9ca3af;
    cursor: not-allowed;
    text-decoration: none;
}

.cs-code-error {
    color: #ef4444;
    font-size: 13px;
    margin-top: 12px;
    display: none;
}



.cs-progress-section {
    text-align: center;
    padding: 20px 0;
}

.cs-progress-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: cs-pulse 2s ease-in-out infinite;
}

@keyframes cs-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cs-progress-title {
    font-size: 18px;
    font-weight: 600;
    color: #00293C;
    margin-bottom: 8px;
}

.cs-progress-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

.cs-progress-bar-container {
    background: #e5e7eb;
    border-radius: 8px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.cs-progress-bar {
    background: linear-gradient(90deg, #EC6E1E 0%, #f09c5a 100%);
    height: 100%;
    border-radius: 8px;
    width: 0%;
    transition: width 0.5s ease;
}

.cs-progress-percent {
    font-size: 14px;
    font-weight: 600;
    color: #EC6E1E;
    margin-bottom: 24px;
}

.cs-progress-steps {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.cs-progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.cs-progress-step.active {
    color: #EC6E1E;
    font-weight: 600;
}

.cs-progress-step.completed {
    color: #10b981;
}

.cs-progress-step-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
}

.cs-progress-step.active .cs-progress-step-icon {
    background: rgba(236, 110, 30, 0.15);
    color: #EC6E1E;
    animation: cs-pulse 1.5s ease-in-out infinite;
}

.cs-progress-step.completed .cs-progress-step-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}


.cs-queue-position {
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 400;
    margin: 4px 0 2px;
    font-style: italic;
}


.cs-fun-message {
    text-align: center;
    color: #8892a4;
    font-size: 13px;
    font-style: italic;
    margin: 16px 0 8px;
    min-height: 20px;
    transition: opacity 0.3s ease;
}



.cs-result-section {
    text-align: center;
    padding: 20px 0;
}

.cs-result-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.cs-result-title {
    font-size: 22px;
    font-weight: 700;
    color: #00293C;
    margin-bottom: 8px;
}

.cs-result-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 32px;
}

.cs-result-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.cs-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.cs-result-row + .cs-result-row {
    border-top: 1px solid #dcfce7;
}

.cs-result-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.cs-result-value {
    font-size: 14px;
    font-weight: 600;
    color: #00293C;
}

.cs-result-value a {
    color: #EC6E1E;
    text-decoration: none;
}

.cs-result-value a:hover {
    text-decoration: underline;
}

.cs-result-info {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 16px;
    text-align: left;
    margin-bottom: 24px;
}

.cs-result-info p {
    font-size: 13px;
    color: #1e40af;
    margin: 0;
    line-height: 1.6;
}

.cs-result-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
}

.cs-result-error p {
    font-size: 14px;
    color: #991b1b;
    margin: 0;
    line-height: 1.6;
}



.cs-card-footer {
    padding: 16px 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.cs-btn-primary {
    background: #EC6E1E;
    color: #fff;
}

.cs-btn-primary:hover {
    background: #d4621a;
    box-shadow: 0 4px 12px rgba(236, 110, 30, 0.3);
}

.cs-btn-primary:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    box-shadow: none;
}

.cs-btn-secondary {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.cs-btn-secondary:hover {
    background: #f3f4f6;
    color: #4b5563;
}

.cs-btn-link {
    background: transparent;
    color: #EC6E1E;
    border: none;
    padding: 10px 16px;
}

.cs-btn-link:hover {
    color: #d4621a;
    text-decoration: underline;
}

.cs-btn-success {
    background: #10b981;
    color: #fff;
}

.cs-btn-success:hover {
    background: #059669;
}



.cs-alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 16px;
    display: none;
}

.cs-alert.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.cs-alert.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.cs-alert.visible {
    display: block;
}



.cs-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: cs-spin 0.6s linear infinite;
}

.cs-spinner.dark {
    border-color: rgba(0,0,0,0.15);
    border-top-color: #EC6E1E;
}

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



.cs-footer {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
}

.cs-footer p {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    margin: 0;
}



@media (max-width: 640px) {
    .cs-wizard {
        padding: 20px 12px;
    }

    .cs-header h1 {
        font-size: 22px;
    }

    .cs-card-body {
        padding: 20px;
    }

    .cs-card-header {
        padding: 16px 20px;
    }

    .cs-card-footer {
        padding: 12px 20px 16px;
        flex-direction: column;
        gap: 8px;
    }

    .cs-card-footer .cs-btn {
        width: 100%;
        justify-content: center;
    }

    .cs-form-row {
        grid-template-columns: 1fr;
    }

    .cs-form-group.full-width {
        grid-column: span 1;
    }

    .cs-plan-grid {
        grid-template-columns: 1fr;
    }

    .cs-step-label {
        display: none;
    }

    .cs-step-connector {
        width: 16px;
    }

    .cs-code-digit {
        width: 40px;
        height: 48px;
        font-size: 20px;
    }

    .cs-plan-tab {
        padding: 10px 8px;
        font-size: 12px;
        gap: 4px;
    }

    .cs-plan-tab-icon {
        font-size: 14px;
    }

    .cs-plan-tab-desc {
        font-size: 12px;
        padding: 8px 12px;
    }
}

